Runs
Start Run
Requests start for a submitted run. User-created runs become runnable; parent-generated child runs may become pending until approved. Provide resume=true to resume an interrupted run from checkpoint. Returns 409 if the run is not startable.
post/api/v1/runs/{id}/start
Path parameters
idstring required
Unique run identifier (ULID).
Request body
Response
Run started
Example response
{
"repository": {
"name": "fabro-sh/fabro",
"origin_url": "https://github.com/fabro-sh/fabro.git"
},
"lifecycle": {
"error": {
"message": "Stage 'apply-changes' exceeded maximum retries."
}
},
"timing": {
"wall_time_ms": 420000,
"inference_time_ms": 120000,
"tool_time_ms": 60000,
"active_time_ms": 180000
},
"diff": {
"files_changed": 42,
"additions": 567,
"deletions": 234
},
"pull_request": {
"owner": "fabro-sh",
"repo": "fabro",
"number": 123,
"html_url": "https://github.com/fabro-sh/fabro/pull/123"
},
"current_question": {
"text": "Accept or push for another round?"
}
}