DELETE
/
v1
/
retrospective_steps
/
{id}
curl --request DELETE \
  --url https://api.rootly.com/v1/retrospective_steps/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "147878a3-0fec-4ef1-b44a-6eb7077b6362",
    "type": "retrospective_steps",
    "attributes": {
      "retrospective_process_id": "e55debd9-8b47-40b6-94d2-0ddc1f5c4028",
      "title": "Step 11",
      "description": "Bar",
      "incident_role_id": "75030d54-3d30-4db1-9f3b-a5023e1fea7b",
      "due_after_days": null,
      "position": 1,
      "skippable": true,
      "created_at": "2025-04-18T09:52:03.477-07:00",
      "updated_at": "2025-04-18T09:52:05.462-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?