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": "44062e84-e510-4464-973b-0c9b7a778df3",
"type": "retrospective_processes",
"attributes": {
"name": "Nulla blanditiis porro modi.",
"description": "Deserunt ullam quasi. Qui voluptatum consequatur. Et qui occaecati.",
"is_default": false,
"created_at": "2026-01-19T23:21:10.139-08:00",
"updated_at": "2026-01-19T23:21:10.139-08:00",
"retrospective_process_matching_criteria": {
"incident_type_ids": [
"3a8e3366-c042-46ec-a896-8df8cc3f4185"
]
}
},
"relationships": {
"retrospective_steps": {
"data": [
{
"id": "0c857f8b-d318-4080-8d21-6c7eeebb28cb",
"type": "retrospective_steps"
},
{
"id": "26f2eab5-0f42-498a-9a56-bdfcf0266297",
"type": "retrospective_steps"
}
]
},
"incident_types": {
"data": [
{
"id": "3a8e3366-c042-46ec-a896-8df8cc3f4185",
"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": "44062e84-e510-4464-973b-0c9b7a778df3",
"type": "retrospective_processes",
"attributes": {
"name": "Nulla blanditiis porro modi.",
"description": "Deserunt ullam quasi. Qui voluptatum consequatur. Et qui occaecati.",
"is_default": false,
"created_at": "2026-01-19T23:21:10.139-08:00",
"updated_at": "2026-01-19T23:21:10.139-08:00",
"retrospective_process_matching_criteria": {
"incident_type_ids": [
"3a8e3366-c042-46ec-a896-8df8cc3f4185"
]
}
},
"relationships": {
"retrospective_steps": {
"data": [
{
"id": "0c857f8b-d318-4080-8d21-6c7eeebb28cb",
"type": "retrospective_steps"
},
{
"id": "26f2eab5-0f42-498a-9a56-bdfcf0266297",
"type": "retrospective_steps"
}
]
},
"incident_types": {
"data": [
{
"id": "3a8e3366-c042-46ec-a896-8df8cc3f4185",
"type": "incident_types"
}
]
}
}
}
}