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": "f0872dcc-9a26-467a-9694-aed2c1e57060",
"type": "retrospective_processes",
"attributes": {
"name": "Non dolorem dignissimos nisi.",
"description": "Necessitatibus eveniet ut. Excepturi dolores illo. Recusandae non quae.",
"is_default": false,
"created_at": "2025-12-08T06:25:05.485-08:00",
"updated_at": "2025-12-08T06:25:05.485-08:00",
"retrospective_process_matching_criteria": {
"incident_type_ids": [
"9ab344c1-6307-4f2e-a6a9-322c909bcb4e"
]
}
},
"relationships": {
"retrospective_steps": {
"data": [
{
"id": "44e92b80-b44e-4d55-a9e8-0d9a6da41b10",
"type": "retrospective_steps"
},
{
"id": "20b1cc8c-e20c-4320-b80d-fd44cecf7367",
"type": "retrospective_steps"
}
]
},
"incident_types": {
"data": [
{
"id": "9ab344c1-6307-4f2e-a6a9-322c909bcb4e",
"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": "f0872dcc-9a26-467a-9694-aed2c1e57060",
"type": "retrospective_processes",
"attributes": {
"name": "Non dolorem dignissimos nisi.",
"description": "Necessitatibus eveniet ut. Excepturi dolores illo. Recusandae non quae.",
"is_default": false,
"created_at": "2025-12-08T06:25:05.485-08:00",
"updated_at": "2025-12-08T06:25:05.485-08:00",
"retrospective_process_matching_criteria": {
"incident_type_ids": [
"9ab344c1-6307-4f2e-a6a9-322c909bcb4e"
]
}
},
"relationships": {
"retrospective_steps": {
"data": [
{
"id": "44e92b80-b44e-4d55-a9e8-0d9a6da41b10",
"type": "retrospective_steps"
},
{
"id": "20b1cc8c-e20c-4320-b80d-fd44cecf7367",
"type": "retrospective_steps"
}
]
},
"incident_types": {
"data": [
{
"id": "9ab344c1-6307-4f2e-a6a9-322c909bcb4e",
"type": "incident_types"
}
]
}
}
}
}