curl --request GET \
--url https://api.example.com/runs/{id}/stages \
--header 'Authorization: Bearer <token>'{
"data": [
{
"id": "propose-changes",
"name": "Propose Changes",
"status": "completed",
"duration_secs": 154,
"dot_id": "propose"
}
],
"meta": {
"has_more": true
}
}Returns the ordered list of stages in a run’s workflow graph with their current status and timing. Stages are bounded by the workflow graph size, typically fewer than 20.
curl --request GET \
--url https://api.example.com/runs/{id}/stages \
--header 'Authorization: Bearer <token>'{
"data": [
{
"id": "propose-changes",
"name": "Propose Changes",
"status": "completed",
"duration_secs": 154,
"dot_id": "propose"
}
],
"meta": {
"has_more": true
}
}JWT bearer token issued by fabro-web. See the Authentication guide for details.
Unique run identifier (ULID).
Maximum number of items to return per page.
1 <= x <= 100Number of items to skip before returning results.
x >= 0