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": "b5e79db3-3e41-4cad-9e61-01a0349c3c64",
"type": "retrospective_process_groups",
"attributes": {
"retrospective_process_id": "cabd08a9-a1b0-418e-be26-16576c708280",
"sub_status_id": "a954a138-a8de-4eb3-8021-f9147fca2832",
"position": 1,
"updated_at": "2025-09-01T03:42:34.388-07:00",
"created_at": "2025-09-01T03:42:34.388-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": "b5e79db3-3e41-4cad-9e61-01a0349c3c64",
"type": "retrospective_process_groups",
"attributes": {
"retrospective_process_id": "cabd08a9-a1b0-418e-be26-16576c708280",
"sub_status_id": "a954a138-a8de-4eb3-8021-f9147fca2832",
"position": 1,
"updated_at": "2025-09-01T03:42:34.388-07:00",
"created_at": "2025-09-01T03:42:34.388-07:00"
},
"relationships": {
"retrospective_process_group_steps": {
"data": []
}
}
}
}