curl --request POST \
--url https://api.example.com/runs/{id}/pause \
--header 'Authorization: Bearer <token>'{
"id": "01JNQVR7M0EJ5GKAT2SC4ERS1Z",
"status": "queued",
"created_at": "2026-03-06T14:30:00Z",
"error": {
"message": "Stage 'apply-changes' exceeded maximum retries."
},
"queue_position": 3
}Pauses a running run. Returns 409 if the run is not running.
curl --request POST \
--url https://api.example.com/runs/{id}/pause \
--header 'Authorization: Bearer <token>'{
"id": "01JNQVR7M0EJ5GKAT2SC4ERS1Z",
"status": "queued",
"created_at": "2026-03-06T14:30:00Z",
"error": {
"message": "Stage 'apply-changes' exceeded maximum retries."
},
"queue_position": 3
}JWT bearer token issued by fabro-web. See the Authentication guide for details.
Unique run identifier (ULID).
Run paused
Current status of a run with optional error and queue position.
Unique run identifier (ULID).
"01JNQVR7M0EJ5GKAT2SC4ERS1Z"
Lifecycle status of a run.
queued, starting, running, completed, failed, cancelled, paused Timestamp when the run was created.
"2026-03-06T14:30:00Z"
Error information for a failed run.
Show child attributes
Position in the queue (1-based). Only present when status is queued.
3