Skip to main content

Automation Executions

[API Docs] [SDK]

When an Automation Flow is triggered, a new Automation Execution is created.

The execution can be viewed on the triggering entity from the Automation section.

Actions​

An execution contains a list of actions that run in the same order they were defined on the Automation Flow.

Each action executes in sequence and only starts after the previous action completes successfully.

If an action fails, an error message appears on the execution and subsequent actions are skipped.

Execution Statuses​

An execution progresses through the following statuses:

stateDiagram-v2 [*] --> pending pending --> in_progress in_progress --> success in_progress --> failed in_progress --> cancelled pending --> paused paused --> in_progress
StatusDescription
pendingExecution created, waiting to start
in_progressActions are being executed
successAll actions completed successfully
failedAn action encountered an error
cancelledExecution was cancelled
pausedExecution is paused (e.g. scheduled for later)