Retrieves a specific retrospective process by id
curl --request GET \
--url https://api.rootly.com/v1/retrospective_processes/{id} \
--header 'Authorization: Bearer <token>'{
"data": {
"id": "93f822ea-3fe6-49c2-91d4-114369a73e14",
"type": "retrospective_processes",
"attributes": {
"name": "Ipsum quo voluptas fuga.",
"description": "Quae alias inventore. Quibusdam dolorum a. Veritatis nesciunt recusandae.",
"is_default": false,
"created_at": "2026-02-03T06:24:58.075-08:00",
"updated_at": "2026-02-03T06:24:58.075-08:00",
"retrospective_process_matching_criteria": {
"incident_type_ids": [
"9dd58747-7057-468b-89c0-add9afc66a87"
]
}
},
"relationships": {
"retrospective_steps": {
"data": [
{
"id": "a2e1e684-02eb-459e-ad5f-e0ead5cf989b",
"type": "retrospective_steps"
},
{
"id": "5099ff1f-6e42-481b-a366-e5701d05e54e",
"type": "retrospective_steps"
}
]
},
"incident_types": {
"data": [
{
"id": "9dd58747-7057-468b-89c0-add9afc66a87",
"type": "incident_types"
}
]
}
}
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
comma separated if needed. eg: retrospective_steps,severities
retrospective_steps, severities, incident_types, groups retrospective_process found
Show child attributes
Was this page helpful?
curl --request GET \
--url https://api.rootly.com/v1/retrospective_processes/{id} \
--header 'Authorization: Bearer <token>'{
"data": {
"id": "93f822ea-3fe6-49c2-91d4-114369a73e14",
"type": "retrospective_processes",
"attributes": {
"name": "Ipsum quo voluptas fuga.",
"description": "Quae alias inventore. Quibusdam dolorum a. Veritatis nesciunt recusandae.",
"is_default": false,
"created_at": "2026-02-03T06:24:58.075-08:00",
"updated_at": "2026-02-03T06:24:58.075-08:00",
"retrospective_process_matching_criteria": {
"incident_type_ids": [
"9dd58747-7057-468b-89c0-add9afc66a87"
]
}
},
"relationships": {
"retrospective_steps": {
"data": [
{
"id": "a2e1e684-02eb-459e-ad5f-e0ead5cf989b",
"type": "retrospective_steps"
},
{
"id": "5099ff1f-6e42-481b-a366-e5701d05e54e",
"type": "retrospective_steps"
}
]
},
"incident_types": {
"data": [
{
"id": "9dd58747-7057-468b-89c0-add9afc66a87",
"type": "incident_types"
}
]
}
}
}
}