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": "7aa6830f-fda9-4c01-a3bd-ca8d4ce0bb69",
"type": "retrospective_processes",
"attributes": {
"name": "Dignissimos nam illo enim.",
"description": "Harum vel quia. Voluptas placeat amet. Sit laborum odio.",
"is_default": false,
"created_at": "2025-12-23T23:20:44.871-08:00",
"updated_at": "2025-12-23T23:20:44.871-08:00",
"retrospective_process_matching_criteria": {
"incident_type_ids": [
"0074f90b-3a2f-4346-b372-80bf6b70fc36"
]
}
},
"relationships": {
"retrospective_steps": {
"data": [
{
"id": "cc444870-de45-483e-b400-ab030e495935",
"type": "retrospective_steps"
},
{
"id": "855e3a7d-2356-4f11-8f65-1a5b35492cac",
"type": "retrospective_steps"
}
]
},
"incident_types": {
"data": [
{
"id": "0074f90b-3a2f-4346-b372-80bf6b70fc36",
"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": "7aa6830f-fda9-4c01-a3bd-ca8d4ce0bb69",
"type": "retrospective_processes",
"attributes": {
"name": "Dignissimos nam illo enim.",
"description": "Harum vel quia. Voluptas placeat amet. Sit laborum odio.",
"is_default": false,
"created_at": "2025-12-23T23:20:44.871-08:00",
"updated_at": "2025-12-23T23:20:44.871-08:00",
"retrospective_process_matching_criteria": {
"incident_type_ids": [
"0074f90b-3a2f-4346-b372-80bf6b70fc36"
]
}
},
"relationships": {
"retrospective_steps": {
"data": [
{
"id": "cc444870-de45-483e-b400-ab030e495935",
"type": "retrospective_steps"
},
{
"id": "855e3a7d-2356-4f11-8f65-1a5b35492cac",
"type": "retrospective_steps"
}
]
},
"incident_types": {
"data": [
{
"id": "0074f90b-3a2f-4346-b372-80bf6b70fc36",
"type": "incident_types"
}
]
}
}
}
}