Endpoints
| Method | Path | What it does |
|---|---|---|
GET | /executions | List executions |
GET | /executions/{execution_id} | Get execution details |
POST | /executions | Create an execution |
POST | /executions/{execution_id}/replay | Replay from checkpoint |
POST | /executions/{execution_id}/rollback | Roll back to checkpoint |
List executions
GET /executions
Query parameters:
workflow_id(optional)status(optional):running|completed|failed|cancelled|pausedpage(default: 1)page_size(default: 20)
Get execution
GET /executions/{execution_id}
Create execution
POST /executions
Replay from checkpoint
POST /executions/{execution_id}/replay
Roll back to checkpoint
POST /executions/{execution_id}/rollback
Rolling back pauses the execution at a prior checkpoint and discards later state.
Next steps
Checkpoints
List and fetch checkpoint state for recovery.
Failures
Understand failed runs and resolution flows.