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": "ec1a11a7-5b0e-4d81-9c68-2f07bc234cd6",
"type": "retrospective_processes",
"attributes": {
"name": "Distinctio facere maiores quod.",
"description": "Soluta consequatur deserunt. Et consectetur quo. Eos et qui.",
"is_default": false,
"created_at": "2026-01-09T17:15:40.033-08:00",
"updated_at": "2026-01-09T17:15:40.033-08:00",
"retrospective_process_matching_criteria": {
"incident_type_ids": [
"c10a5471-958e-4d85-90bd-70f1d5bb4cc3"
]
}
},
"relationships": {
"retrospective_steps": {
"data": [
{
"id": "461060e1-64e5-4181-b62f-787e5a19c3d6",
"type": "retrospective_steps"
},
{
"id": "8c8da0e6-5ed8-4bfb-8ccf-388c529cd3f9",
"type": "retrospective_steps"
}
]
},
"incident_types": {
"data": [
{
"id": "c10a5471-958e-4d85-90bd-70f1d5bb4cc3",
"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": "ec1a11a7-5b0e-4d81-9c68-2f07bc234cd6",
"type": "retrospective_processes",
"attributes": {
"name": "Distinctio facere maiores quod.",
"description": "Soluta consequatur deserunt. Et consectetur quo. Eos et qui.",
"is_default": false,
"created_at": "2026-01-09T17:15:40.033-08:00",
"updated_at": "2026-01-09T17:15:40.033-08:00",
"retrospective_process_matching_criteria": {
"incident_type_ids": [
"c10a5471-958e-4d85-90bd-70f1d5bb4cc3"
]
}
},
"relationships": {
"retrospective_steps": {
"data": [
{
"id": "461060e1-64e5-4181-b62f-787e5a19c3d6",
"type": "retrospective_steps"
},
{
"id": "8c8da0e6-5ed8-4bfb-8ccf-388c529cd3f9",
"type": "retrospective_steps"
}
]
},
"incident_types": {
"data": [
{
"id": "c10a5471-958e-4d85-90bd-70f1d5bb4cc3",
"type": "incident_types"
}
]
}
}
}
}