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": "46425d2e-b10e-4476-bc52-b318aa6b2ad6",
"type": "retrospective_processes",
"attributes": {
"name": "Consequatur animi dolor possimus.",
"description": "Ipsa rem reiciendis. Ratione dolor sit. Eaque natus iusto.",
"is_default": false,
"created_at": "2025-12-11T07:32:36.488-08:00",
"updated_at": "2025-12-11T07:32:36.488-08:00",
"retrospective_process_matching_criteria": {
"incident_type_ids": [
"4c198a6c-20da-42f4-bc66-deb3842bc55e"
]
}
},
"relationships": {
"retrospective_steps": {
"data": [
{
"id": "39530031-491a-4fa6-a065-93f87c565288",
"type": "retrospective_steps"
},
{
"id": "0f9bc715-a162-4566-bf6f-845554f0782c",
"type": "retrospective_steps"
}
]
},
"incident_types": {
"data": [
{
"id": "4c198a6c-20da-42f4-bc66-deb3842bc55e",
"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": "46425d2e-b10e-4476-bc52-b318aa6b2ad6",
"type": "retrospective_processes",
"attributes": {
"name": "Consequatur animi dolor possimus.",
"description": "Ipsa rem reiciendis. Ratione dolor sit. Eaque natus iusto.",
"is_default": false,
"created_at": "2025-12-11T07:32:36.488-08:00",
"updated_at": "2025-12-11T07:32:36.488-08:00",
"retrospective_process_matching_criteria": {
"incident_type_ids": [
"4c198a6c-20da-42f4-bc66-deb3842bc55e"
]
}
},
"relationships": {
"retrospective_steps": {
"data": [
{
"id": "39530031-491a-4fa6-a065-93f87c565288",
"type": "retrospective_steps"
},
{
"id": "0f9bc715-a162-4566-bf6f-845554f0782c",
"type": "retrospective_steps"
}
]
},
"incident_types": {
"data": [
{
"id": "4c198a6c-20da-42f4-bc66-deb3842bc55e",
"type": "incident_types"
}
]
}
}
}
}