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": "783a58f7-06bb-4c84-8dd0-799b6e519502",
"type": "retrospective_processes",
"attributes": {
"name": "Recusandae exercitationem voluptatem iste.",
"description": "Temporibus tenetur explicabo. Eligendi ratione id. Vero qui est.",
"is_default": false,
"created_at": "2026-01-16T12:43:41.767-08:00",
"updated_at": "2026-01-16T12:43:41.767-08:00",
"retrospective_process_matching_criteria": {
"incident_type_ids": [
"ab604e4f-2c24-4716-9df3-705473024fbc"
]
}
},
"relationships": {
"retrospective_steps": {
"data": [
{
"id": "93fb931d-cde1-4a06-a0ce-498605963af3",
"type": "retrospective_steps"
},
{
"id": "d2c20e0e-d2d8-48ed-b905-c00e1fd8b039",
"type": "retrospective_steps"
}
]
},
"incident_types": {
"data": [
{
"id": "ab604e4f-2c24-4716-9df3-705473024fbc",
"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": "783a58f7-06bb-4c84-8dd0-799b6e519502",
"type": "retrospective_processes",
"attributes": {
"name": "Recusandae exercitationem voluptatem iste.",
"description": "Temporibus tenetur explicabo. Eligendi ratione id. Vero qui est.",
"is_default": false,
"created_at": "2026-01-16T12:43:41.767-08:00",
"updated_at": "2026-01-16T12:43:41.767-08:00",
"retrospective_process_matching_criteria": {
"incident_type_ids": [
"ab604e4f-2c24-4716-9df3-705473024fbc"
]
}
},
"relationships": {
"retrospective_steps": {
"data": [
{
"id": "93fb931d-cde1-4a06-a0ce-498605963af3",
"type": "retrospective_steps"
},
{
"id": "d2c20e0e-d2d8-48ed-b905-c00e1fd8b039",
"type": "retrospective_steps"
}
]
},
"incident_types": {
"data": [
{
"id": "ab604e4f-2c24-4716-9df3-705473024fbc",
"type": "incident_types"
}
]
}
}
}
}