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": "d7cb7d49-d777-4e7c-94ed-444ca9ac2867",
"type": "retrospective_processes",
"attributes": {
"name": "Soluta culpa repellat ab.",
"description": "Facilis quia dolore. Omnis aliquid ullam. Repellendus eius consectetur.",
"is_default": false,
"created_at": "2026-02-10T06:24:33.432-08:00",
"updated_at": "2026-02-10T06:24:33.432-08:00",
"retrospective_process_matching_criteria": {
"incident_type_ids": [
"01f28a44-46c0-4500-8333-77bdefc0a5b1"
]
}
},
"relationships": {
"retrospective_steps": {
"data": [
{
"id": "5b8378ef-72e8-4e3a-8751-69469f43fb05",
"type": "retrospective_steps"
},
{
"id": "b5eb8324-cd80-43d5-8442-107c433ac3ab",
"type": "retrospective_steps"
}
]
},
"incident_types": {
"data": [
{
"id": "01f28a44-46c0-4500-8333-77bdefc0a5b1",
"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": "d7cb7d49-d777-4e7c-94ed-444ca9ac2867",
"type": "retrospective_processes",
"attributes": {
"name": "Soluta culpa repellat ab.",
"description": "Facilis quia dolore. Omnis aliquid ullam. Repellendus eius consectetur.",
"is_default": false,
"created_at": "2026-02-10T06:24:33.432-08:00",
"updated_at": "2026-02-10T06:24:33.432-08:00",
"retrospective_process_matching_criteria": {
"incident_type_ids": [
"01f28a44-46c0-4500-8333-77bdefc0a5b1"
]
}
},
"relationships": {
"retrospective_steps": {
"data": [
{
"id": "5b8378ef-72e8-4e3a-8751-69469f43fb05",
"type": "retrospective_steps"
},
{
"id": "b5eb8324-cd80-43d5-8442-107c433ac3ab",
"type": "retrospective_steps"
}
]
},
"incident_types": {
"data": [
{
"id": "01f28a44-46c0-4500-8333-77bdefc0a5b1",
"type": "incident_types"
}
]
}
}
}
}