DELETE
/
v1
/
retrospective_steps
/
{id}
curl --request DELETE \
  --url https://api.rootly.com/v1/retrospective_steps/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "576ee931-96b3-433e-8352-1ece0de0b231",
    "type": "retrospective_steps",
    "attributes": {
      "retrospective_process_id": "e3581b47-b10c-46c6-bc45-90621ebe40f0",
      "title": "Step 11",
      "description": "Bar",
      "incident_role_id": "789444f1-48f5-46f4-b10a-0e0e1ec622e4",
      "due_after_days": null,
      "position": 1,
      "skippable": true,
      "created_at": "2025-03-26T23:24:19.138-07:00",
      "updated_at": "2025-03-26T23:24:21.142-07:00"
    }
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

Response

200
application/vnd.api+json
retrospective_step deleted
data
object
required

Was this page helpful?