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": "6dc895d0-2146-44d0-9c94-a43ca99e8af3",
"type": "retrospective_process_groups",
"attributes": {
"retrospective_process_id": "0b108612-f04a-466d-baed-9f2aff0f262c",
"sub_status_id": "aae6fa22-076b-4dd1-b869-62c5e2d1d3ee",
"position": 1,
"updated_at": "2025-08-11T20:45:52.820-07:00",
"created_at": "2025-08-11T20:45:52.820-07: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
The response is of type object
.
curl --request GET \
--url https://api.rootly.com/v1/retrospective_process_groups/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "6dc895d0-2146-44d0-9c94-a43ca99e8af3",
"type": "retrospective_process_groups",
"attributes": {
"retrospective_process_id": "0b108612-f04a-466d-baed-9f2aff0f262c",
"sub_status_id": "aae6fa22-076b-4dd1-b869-62c5e2d1d3ee",
"position": 1,
"updated_at": "2025-08-11T20:45:52.820-07:00",
"created_at": "2025-08-11T20:45:52.820-07:00"
},
"relationships": {
"retrospective_process_group_steps": {
"data": []
}
}
}
}