Executions
An execution is one run of a flow.
What executions show
Section titled “What executions show”Executions make a workflow observable step by step. Use them to understand what happened during a run and where a workflow needs adjustment.
Execution details include:
- The ordered list of flow steps.
- Request inputs sent by each step.
- Response bodies, headers, and status information.
- Variables created or updated during the run.
- Failures and the step where they occurred.
Debugging a failed execution
Section titled “Debugging a failed execution”When a run fails, start with the first failing step:
- Check the request body and headers.
- Confirm variables resolved to the expected values.
- Read the response body and status.
- Update the request, flow condition, or source data.
- Replay with the same inputs when appropriate.
Replay
Section titled “Replay”Replay is useful when a workflow failed because of an incorrect request shape, a missing variable, or a temporary downstream issue.
Before replaying, confirm whether the workflow is safe to run again. Some API operations create or mutate data and may require idempotency controls.