Built-in action Built In

Start another workflow in your organization from this step. Useful for breaking complex automations into smaller, reusable pieces.

At a Glance

FieldValue
Action IDtrigger-workflow
CategoryBuilt In
ConnectorNot required
Requires gasNo
Funds movementNone declared
Tagsworkflow, trigger, sub-workflow, orchestration, automation

Payload Schema

FieldTypeRequiredDescription
workflowIdstringYesID of the target workflow to trigger. Must be a published workflow in the same organization (only published workflows appear in the selector).
payloadobjectNoOptional data to pass to the target workflow. If the target has declared inputs, access them via {{root.input.fieldName}}.

Result Schema

FieldTypeRequiredDescription
triggeredWorkflowIdstringYesID of the triggered workflow
triggeredWorkflowNamestringYesName of the triggered workflow
runStatusstringYesStatus of the triggered run
triggeredAtstringYesISO 8601 timestamp when the workflow was triggered

Examples

json
{ "type": "trigger-workflow", "payload": { "workflowId": "wf_abc123" }, "children": []}

Payload fields can use workflow expressions such as {{$trigger.body.amount}}, {{$nodes.fetch.result.price}}, and {{$props.asset}} when the value should come from a trigger, prior node, or reusable workflow prop.