Delete a specific RetrospectiveProcessGroup Step by id
curl --request DELETE \
--url https://api.rootly.com/v1/retrospective_process_group_steps/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "b02fcbe8-a545-477b-b917-7358136eb530",
"type": "retrospective_process_group_steps",
"attributes": {
"retrospective_process_group_id": "0557f056-06b0-4845-92f5-f09605e44f5b",
"retrospective_step_id": "46de62b4-774c-43b5-bca8-4785d00bb5a3",
"position": 1,
"updated_at": "2025-07-21T23:21:53.236-07:00",
"created_at": "2025-07-21T23:21:53.061-07:00"
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
retrospective_process_group_step deleted
The response is of type object
.
Was this page helpful?
curl --request DELETE \
--url https://api.rootly.com/v1/retrospective_process_group_steps/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "b02fcbe8-a545-477b-b917-7358136eb530",
"type": "retrospective_process_group_steps",
"attributes": {
"retrospective_process_group_id": "0557f056-06b0-4845-92f5-f09605e44f5b",
"retrospective_step_id": "46de62b4-774c-43b5-bca8-4785d00bb5a3",
"position": 1,
"updated_at": "2025-07-21T23:21:53.236-07:00",
"created_at": "2025-07-21T23:21:53.061-07:00"
}
}
}