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": "79f87816-ae95-437b-9899-a80ddfb3c4d1",
"type": "retrospective_processes",
"attributes": {
"name": "Nostrum optio amet laudantium.",
"description": "Iste est quae. Consequuntur corporis sit. Aliquam ea harum.",
"is_default": false,
"created_at": "2025-12-05T21:28:14.110-08:00",
"updated_at": "2025-12-05T21:28:14.110-08:00",
"retrospective_process_matching_criteria": {
"incident_type_ids": [
"274c78c0-be4e-483a-8c8e-e62517cab5f5"
]
}
},
"relationships": {
"retrospective_steps": {
"data": [
{
"id": "740867ab-dc1c-40d7-8365-4f6bf5785cf0",
"type": "retrospective_steps"
},
{
"id": "0d854a8e-de7d-4230-b084-82a7e352e769",
"type": "retrospective_steps"
}
]
},
"incident_types": {
"data": [
{
"id": "274c78c0-be4e-483a-8c8e-e62517cab5f5",
"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": "79f87816-ae95-437b-9899-a80ddfb3c4d1",
"type": "retrospective_processes",
"attributes": {
"name": "Nostrum optio amet laudantium.",
"description": "Iste est quae. Consequuntur corporis sit. Aliquam ea harum.",
"is_default": false,
"created_at": "2025-12-05T21:28:14.110-08:00",
"updated_at": "2025-12-05T21:28:14.110-08:00",
"retrospective_process_matching_criteria": {
"incident_type_ids": [
"274c78c0-be4e-483a-8c8e-e62517cab5f5"
]
}
},
"relationships": {
"retrospective_steps": {
"data": [
{
"id": "740867ab-dc1c-40d7-8365-4f6bf5785cf0",
"type": "retrospective_steps"
},
{
"id": "0d854a8e-de7d-4230-b084-82a7e352e769",
"type": "retrospective_steps"
}
]
},
"incident_types": {
"data": [
{
"id": "274c78c0-be4e-483a-8c8e-e62517cab5f5",
"type": "incident_types"
}
]
}
}
}
}