/
Automation Docs

Automation Docs


Automation
Add installationId against node, frontend will pass in body of node

  1. Get trigger definition from mongoDb

  2. Create refCode when saving automation in automation db(when node is of type trigger-webhook).

  3. Create webhook url: https://{{workspaceSlug}}.myeshopbox.com/automation/webhook/{{automationId}}/{{refCode}}

  4. Pass the url in performSubscribe api of the APP trigger.

Bundle objects requuired for mapping

bundle.authData.{{variableKey}} = record(all columns) from ie_appinstall_connection table( it represents connection variable)
bundle.authData.{{variableKey}} exists or not, (represent key related to connection)
bundle.inputdata.{{key}} is inputFields (input designer)
process.env.{{CLIENT_ID}} from ie_environment variables represents environment vairables for the app version

3 if else conditions : inputData, authData or process_env

 

iterate on authData map and replace the key or value in the entry simultaneously

Problem statement

  1. Mapping with multiple nodes till we get to action node

  2. Validate workspcaeSLug in orchestrator service

 

Cache token against app credentials
user_token_slug : token
cache for 30 days
on expiry

 

getAppUserToken(appSlug, forceGenerate){ cacheKey = user_token_{{slug}}; if(cacheKey found and forceGenerate == null) return token else generateToken and return }

 

 

Mapping structure:

Object:

items:[
{
"itemId": "5678",
"quantity": 1
},
{
"itemId": "item2",
"quantity": 21
}]

 

Object conversion to definition:

36##items[]##itemId : ["5678", "item2"]

Related content