Trigger another workflow as a step in running workflow.
$batched...
variables will not be available in this node’s input.data
key. The same format is followed for adding variable in actor and data field as well. Following data types are available in workflow:
Data Type | Referring in JSONNET | Description |
---|---|---|
Input Payload | pass as data.<property_key> | This includes the data from your trigger payload and any data modified or added by nodes such as data transform, or webhook/fetch nodes before the invoke node. |
Actor | pass as data["$actor"].<property_key> | Actor properties. In case of event trigger, distinct_id works both as actor and recipient and for inline workflow trigger, it is the distinct_id in actor object. |
Recipient | pass as data["$recipient"].<property_key> | Recipient properties. It is the distinct_id in your event trigger or the key value defined in override recipient field. For inline workflow trigger, it is the distinct_id in recipient object. |
Tenant | pass asdata["$brand"].<property_key> | Tenant properties corresponding to the tenant_id passed in workflow trigger. |
Append current workflow execution data
option.