Workflow Runs
Workflow runs are the durable execution records created from a workflow definition. They expose state, steps, and recovery actions independently from the definition.
Run Operations
| Need | Route |
|---|---|
| Start a run | POST /workflows/{workflow}/runs |
| Inspect a run or its steps | GET /workflow-runs/{run_id} and GET /workflow-runs/{run_id}/steps |
| Stop or continue execution | POST /workflow-runs/{run_id}/cancel and POST /workflow-runs/{run_id}/resume |
| Branch or transport a run | POST /workflow-runs/{run_id}/fork, GET /workflow-runs/{run_id}/export, and POST /workflow-runs/import |
Related
Last updated: July 10, 2026