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": "5e5036d6-98a1-40cf-989f-d0a3b023e8ed",
"type": "retrospective_process_groups",
"attributes": {
"retrospective_process_id": "d272b032-26ca-4430-81f3-0ae5de6be2e9",
"sub_status_id": "718948f7-ae2c-4277-a89c-b1bdfdf4b752",
"position": 1,
"updated_at": "2026-01-03T21:29:17.483-08:00",
"created_at": "2026-01-03T21:29:17.483-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": "5e5036d6-98a1-40cf-989f-d0a3b023e8ed",
"type": "retrospective_process_groups",
"attributes": {
"retrospective_process_id": "d272b032-26ca-4430-81f3-0ae5de6be2e9",
"sub_status_id": "718948f7-ae2c-4277-a89c-b1bdfdf4b752",
"position": 1,
"updated_at": "2026-01-03T21:29:17.483-08:00",
"created_at": "2026-01-03T21:29:17.483-08:00"
},
"relationships": {
"retrospective_process_group_steps": {
"data": []
}
}
}
}