Retrieves a specific Retrospective Process Group by id
curl --request GET \
--url https://api.rootly.com/v1/retrospective_process_groups/{id} \
--header 'Authorization: Bearer <token>'{
"data": {
"id": "cb5fc35c-d01e-494c-ac26-baf8ce1162d7",
"type": "retrospective_process_groups",
"attributes": {
"retrospective_process_id": "d5d53f6d-edb0-49da-89c6-39a038469b88",
"sub_status_id": "f22ce059-c523-4993-ad60-067d7a700836",
"position": 1,
"updated_at": "2026-01-23T22:59:55.083-08:00",
"created_at": "2026-01-23T22:59:55.083-08:00"
},
"relationships": {
"retrospective_process_group_steps": {
"data": []
}
}
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
comma separated if needed. eg: retrospective_process_group_steps
retrospective_process_group_steps sub_status found
Show child attributes
Was this page helpful?
curl --request GET \
--url https://api.rootly.com/v1/retrospective_process_groups/{id} \
--header 'Authorization: Bearer <token>'{
"data": {
"id": "cb5fc35c-d01e-494c-ac26-baf8ce1162d7",
"type": "retrospective_process_groups",
"attributes": {
"retrospective_process_id": "d5d53f6d-edb0-49da-89c6-39a038469b88",
"sub_status_id": "f22ce059-c523-4993-ad60-067d7a700836",
"position": 1,
"updated_at": "2026-01-23T22:59:55.083-08:00",
"created_at": "2026-01-23T22:59:55.083-08:00"
},
"relationships": {
"retrospective_process_group_steps": {
"data": []
}
}
}
}