Flow Completion Event
Fire a notification step when a flow finishes or fails.
The Flow Completion Event node activates after the main flow pipeline finishes — either successfully or with an error. Connect it to a notification node to send alerts based on the outcome.
It runs on a separate branch from your main pipeline. You can have one completion event node per flow, and it always fires last regardless of where you place it on the canvas.
Configuration
| Field | Description |
|---|---|
| Trigger On | When to activate: Flow Completed (success only), Flow Failed (errors only), or Both |
Output
| Name | Description | |
|---|---|---|
| Output | flow_event | Flow run data including status, duration, step counts, and error details |
The flow_event object passed downstream includes:
| Field | Description |
|---|---|
status | completed or failed |
duration_seconds | Total run time |
steps_completed | Number of nodes that ran successfully |
error | Error message if the flow failed (empty on success) |
Tips
- Set Trigger On to
Flow Failedto get alerted only when something goes wrong — keeps notifications quiet during normal operation - Connect an Email Notification to the output to receive an email for each triggered event
- Use Both during initial setup to confirm the flow is running end-to-end, then switch to
Flow Failedonce it's stable - The completion event fires even if an intermediate node fails — it's a reliable catch-all for the entire flow