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": "055d95be-09ab-4a4b-bd46-612b630545d2",
"type": "retrospective_processes",
"attributes": {
"name": "Dignissimos nihil velit iusto.",
"description": "Beatae et occaecati. Excepturi itaque dolor. Id debitis ad.",
"is_default": false,
"created_at": "2025-12-03T21:32:28.710-08:00",
"updated_at": "2025-12-03T21:32:28.710-08:00",
"retrospective_process_matching_criteria": {
"incident_type_ids": [
"7b98c2bb-b620-437a-88c9-aa6d62b3d665"
]
}
},
"relationships": {
"retrospective_steps": {
"data": [
{
"id": "a2408802-784d-4d1d-9fa2-784da81a9d01",
"type": "retrospective_steps"
},
{
"id": "ddb3b2d3-b718-4d53-818d-bc4d641e8765",
"type": "retrospective_steps"
}
]
},
"incident_types": {
"data": [
{
"id": "7b98c2bb-b620-437a-88c9-aa6d62b3d665",
"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
Unique id of retrospective process
retrospective_processes Show child attributes
The name of the retrospective process
The description of the retrospective process
Indicates the default process that Rootly created. This will be used as a fallback if no processes match the incident's conditions. The default process cannot have conditions and cannot be changed.
Date of creation
Date of last update
Was this page helpful?
curl --request GET \
--url https://api.rootly.com/v1/retrospective_processes/{id} \
--header 'Authorization: Bearer <token>'{
"data": {
"id": "055d95be-09ab-4a4b-bd46-612b630545d2",
"type": "retrospective_processes",
"attributes": {
"name": "Dignissimos nihil velit iusto.",
"description": "Beatae et occaecati. Excepturi itaque dolor. Id debitis ad.",
"is_default": false,
"created_at": "2025-12-03T21:32:28.710-08:00",
"updated_at": "2025-12-03T21:32:28.710-08:00",
"retrospective_process_matching_criteria": {
"incident_type_ids": [
"7b98c2bb-b620-437a-88c9-aa6d62b3d665"
]
}
},
"relationships": {
"retrospective_steps": {
"data": [
{
"id": "a2408802-784d-4d1d-9fa2-784da81a9d01",
"type": "retrospective_steps"
},
{
"id": "ddb3b2d3-b718-4d53-818d-bc4d641e8765",
"type": "retrospective_steps"
}
]
},
"incident_types": {
"data": [
{
"id": "7b98c2bb-b620-437a-88c9-aa6d62b3d665",
"type": "incident_types"
}
]
}
}
}
}