PUT
/
v1
/
incident_retrospective_steps
/
{id}
curl --request PUT \
  --url https://api.rootly.com/v1/incident_retrospective_steps/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/vnd.api+json' \
  --data '{
  "data": {
    "type": "incident_retrospective_steps",
    "attributes": {
      "title": "<string>",
      "description": "<string>",
      "due_date": "<string>",
      "position": 123,
      "skippable": true,
      "status": "todo"
    }
  }
}'
{
  "data": {
    "id": "1769f28e-9609-4b46-ada1-375609a8656c",
    "type": "incident_retrospective_steps",
    "attributes": {
      "retrospective_step_id": "1ee9a40e-1a03-43b8-93a0-7241b6ab1a84",
      "incident_id": "15dee263-67b5-42fb-928d-1e5abe5ce3a2",
      "title": "Step 2",
      "description": "Step 2 description",
      "due_date": "2024-12-05T08:10:58.323-08:00",
      "user_id": null,
      "kind": "custom",
      "position": 2,
      "skippable": true,
      "status": "todo",
      "status_changed_at": null,
      "status_changed_by_id": null,
      "created_at": "2025-03-28T17:57:28.960-07:00",
      "updated_at": "2025-03-28T17:57:30.077-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

Body

application/vnd.api+json
data
object
required

Response

200
application/vnd.api+json
incident_retrospective_step updated
data
object
required