Retrieves a specific RetrospectiveProcessGroup Step by id
curl --request GET \
--url https://api.rootly.com/v1/retrospective_process_group_steps/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "717169a3-cea3-481c-a255-9462c21bff84",
"type": "retrospective_process_group_steps",
"attributes": {
"retrospective_process_group_id": "427c4e3d-0c80-40cc-9db4-a33def638c1a",
"retrospective_step_id": "e528f21e-2296-46d4-a930-9d2505c0b367",
"position": 1,
"updated_at": "2025-09-08T13:49:31.138-07:00",
"created_at": "2025-09-08T13:49:31.138-07:00"
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
sub_status found
The response is of type object
.
curl --request GET \
--url https://api.rootly.com/v1/retrospective_process_group_steps/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "717169a3-cea3-481c-a255-9462c21bff84",
"type": "retrospective_process_group_steps",
"attributes": {
"retrospective_process_group_id": "427c4e3d-0c80-40cc-9db4-a33def638c1a",
"retrospective_step_id": "e528f21e-2296-46d4-a930-9d2505c0b367",
"position": 1,
"updated_at": "2025-09-08T13:49:31.138-07:00",
"created_at": "2025-09-08T13:49:31.138-07:00"
}
}
}