Skip to main content

END

Ends the execution of a flow based on the given condition, with optional notification.

At a glance

  • Category Control
  • Aliases END_IF
  • Version: 1.0.12
  • Applications: all
  • Scope: all

Config Options

NameDescriptionDefaultRequiredResolvedConstraintsConditional Rules
conditionThe condition to evaluate. Flow will be terminated gracefully when condition evaluates to true.NonefalsetrueNoneNone
notificationOptional notification to show when ending the flow.NonefalsefalseNoneNone

Examples

End flow if condition met

 - step: END_IF
condition: "{{errorOccurred}}"

End flow with notification

 - step: END_IF
condition: "{{noDataAvailable}}"
notification:
type: "warning"
message: "No data available for processing"
title: "Flow Terminated"

End flow unconditionally with success notification

 - step: END
notification:
type: "success"
message: "Processing completed successfully"
title: "Done"

See Also

General Resources: