PUT
/
v1
/
retrospective_steps
/
{id}
curl --request PUT \
  --url https://api.rootly.com/v1/retrospective_steps/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/vnd.api+json' \
  --data '{
  "data": {
    "type": "retrospective_steps",
    "attributes": {
      "title": "<string>",
      "description": "<string>",
      "incident_role_id": "<string>",
      "due_after_days": 123,
      "position": 123,
      "skippable": true
    }
  }
}'
{
  "data": {
    "id": "c771de8f-4c11-4521-ab0e-608503aca3e9",
    "type": "retrospective_steps",
    "attributes": {
      "retrospective_process_id": "2fce7b2d-ada1-46a0-8651-46aa68be350f",
      "title": "Step 2",
      "description": "Step 2 description",
      "incident_role_id": "4f054ad3-8538-4092-be32-c5201032b35e",
      "due_after_days": 7,
      "position": 2,
      "skippable": true,
      "created_at": "2025-06-20T11:35:41.433-07:00",
      "updated_at": "2025-06-20T11:35:42.748-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

Response

200
application/vnd.api+json

retrospective_step updated

The response is of type object.