When To Use
- Centralize common notification logic into a shared sub-workflow.
- Build reusable enrichment workflows called from multiple pipelines.
Configuration Checklist
- Set this as the trigger for workflows intended to be called by other workflows.
- Define expected input variables on the called workflow.
- From another workflow, use Trigger Another Workflow action and pass required values.
- Validate contract changes whenever either workflow is updated.
Inputs
- Node metadata in
node.data:uiIdandcomponentId. - Trigger-specific configuration from the node form (for example schedule or API trigger settings).
- No upstream node input is required because this is the workflow entrypoint.
Outputs
- Produces the initial workflow context (the
triggerpayload) for downstream nodes. - Exposes trigger/event data that subsequent actions and conditions can reference.
- Starts execution flow for connected nodes.
Failure Modes
- Missing or invalid trigger configuration fields.
- Workflow disabled/inactive, so the trigger does not execute.
- Event payload missing fields expected by downstream nodes.
- Permission/integration issues that prevent trigger invocation.
Best Practices
- Place this as the first node and connect it to the first action or condition.
- Keep trigger payload shape stable so downstream mappings remain reliable.