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": "b2f15d69-b208-4512-a317-93640162ce2c",
"type": "retrospective_processes",
"attributes": {
"name": "Nam et et placeat.",
"description": "Sunt minus dolores. Necessitatibus et voluptatibus. Sed ipsa omnis.",
"is_default": false,
"created_at": "2026-02-13T07:05:52.129-08:00",
"updated_at": "2026-02-13T07:05:52.129-08:00",
"retrospective_process_matching_criteria": {
"incident_type_ids": [
"fc7e92b0-5e9a-4fd1-a97b-e9a99c1b60f5"
]
}
},
"relationships": {
"retrospective_steps": {
"data": [
{
"id": "947ef7e0-4fb9-4913-9d3e-152c723c3118",
"type": "retrospective_steps"
},
{
"id": "5e042b82-7a1f-433e-96c5-56057ee15ea2",
"type": "retrospective_steps"
}
]
},
"incident_types": {
"data": [
{
"id": "fc7e92b0-5e9a-4fd1-a97b-e9a99c1b60f5",
"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": "b2f15d69-b208-4512-a317-93640162ce2c",
"type": "retrospective_processes",
"attributes": {
"name": "Nam et et placeat.",
"description": "Sunt minus dolores. Necessitatibus et voluptatibus. Sed ipsa omnis.",
"is_default": false,
"created_at": "2026-02-13T07:05:52.129-08:00",
"updated_at": "2026-02-13T07:05:52.129-08:00",
"retrospective_process_matching_criteria": {
"incident_type_ids": [
"fc7e92b0-5e9a-4fd1-a97b-e9a99c1b60f5"
]
}
},
"relationships": {
"retrospective_steps": {
"data": [
{
"id": "947ef7e0-4fb9-4913-9d3e-152c723c3118",
"type": "retrospective_steps"
},
{
"id": "5e042b82-7a1f-433e-96c5-56057ee15ea2",
"type": "retrospective_steps"
}
]
},
"incident_types": {
"data": [
{
"id": "fc7e92b0-5e9a-4fd1-a97b-e9a99c1b60f5",
"type": "incident_types"
}
]
}
}
}
}