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": "f010ded1-3bb7-48c9-8ccc-6811ccffdc07",
"type": "retrospective_process_groups",
"attributes": {
"retrospective_process_id": "de734612-052a-481c-be1d-cbccedd605c4",
"sub_status_id": "7836bee9-0072-408d-a9f9-23ecffd660be",
"position": 1,
"updated_at": "2025-07-21T23:21:55.525-07:00",
"created_at": "2025-07-21T23:21:55.525-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": "f010ded1-3bb7-48c9-8ccc-6811ccffdc07",
"type": "retrospective_process_groups",
"attributes": {
"retrospective_process_id": "de734612-052a-481c-be1d-cbccedd605c4",
"sub_status_id": "7836bee9-0072-408d-a9f9-23ecffd660be",
"position": 1,
"updated_at": "2025-07-21T23:21:55.525-07:00",
"created_at": "2025-07-21T23:21:55.525-07:00"
},
"relationships": {
"retrospective_process_group_steps": {
"data": []
}
}
}
}