Terminate Node
Immediately stops workflow execution.
Input Fields
Task Name: Descriptive name for this termination point.
Termination Status: Set the final workflow status - COMPLETED, FAILED, or TERMINATED.
Termination Reason: Message explaining why the workflow was terminated. Useful for debugging and audit logs.
Output Data: Optional data to include in the workflow’s final output.
Use Cases
- Stop workflow when an error condition is met
- End workflow early when goal is achieved
- Prevent further execution in error scenarios
- Exit from loops or conditional branches
Tips:
- Use in combination with switch nodes for conditional termination
- Provide clear termination reason for debugging
- Consider using different status codes for different scenarios
- Termination is immediate - no cleanup tasks run after
Need help? Have feedback?