The Stop Execution node immediately halts the execution of your workflow when reached, preventing any subsequent nodes from running.

Functionality

The Stop Execution node:

  • Immediately stops workflow execution
  • Can be used in conditional branches
  • Useful for error handling and flow control

Usage Examples

Scenario: Error Handling

In this example, the Stop Execution node prevents further processing when invalid input is detected.

Scenario: Conditional Processing

Tips and Best Practices

  • Use in combination with conditional nodes for flow control
  • Place strategically in error handling branches
  • Consider adding logging or notification nodes before Stop Execution
  • Use to prevent unnecessary processing when conditions aren’t met