Child Workflow
Node Card
Category: Logic & Flow Nodes
Type:
child-workflowTypical position: Anywhere a reusable sub-flow needs to be composed in: for example, calling a shared MFA or consent workflow from multiple parent flows.
Properties
Outputs & Errors
| Property | Type | Required | Description |
|---|---|---|---|
| Workflow | select with search | Yes | The target child workflow to invoke. Searches across all published workflows in the tenant. |
| Output | Condition |
|---|---|
true | Child workflow completed successfully (reached its Success Final node) |
false | Child workflow failed or reached a Failure Final node |
Common Next Nodes
Child Workflow (true)→Success Finalsub-flow succeeded: continue the parent flow
Child Workflow (false)→Failure Finalsub-flow failed: end or retry
Usage Notes
Use Child Workflow to extract reusable sequences (such as an MFA challenge, a consent check, or a risk evaluation block) into a standalone workflow and call it from multiple parent flows. This avoids duplicating logic and keeps individual workflows concise. Ensure the child workflow has a clearly defined Success and Failure Final node so the parent receives a determinate result.