GET
/
v1
/
incident_retrospective_steps
/
{id}
curl --request GET \
  --url https://api.rootly.com/v1/incident_retrospective_steps/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "cb4c39ea-5d6b-4be0-8d23-e83de739a8ec",
    "type": "incident_retrospective_steps",
    "attributes": {
      "retrospective_step_id": "d38c434e-2f47-49bc-9a2c-e33ab2ec3f67",
      "incident_id": "19e03253-9b7f-461b-a2a7-464219013055",
      "title": "Step 4",
      "description": null,
      "due_date": null,
      "user_id": null,
      "kind": "custom",
      "position": 1,
      "skippable": false,
      "status": "todo",
      "status_changed_at": null,
      "status_changed_by_id": null,
      "created_at": "2025-05-29T17:45:22.427-07:00",
      "updated_at": "2025-05-29T17:45:22.427-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

incident retrospective_step found

The response is of type object.