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": "147878a3-0fec-4ef1-b44a-6eb7077b6362",
    "type": "retrospective_steps",
    "attributes": {
      "retrospective_process_id": "e55debd9-8b47-40b6-94d2-0ddc1f5c4028",
      "title": "Step 2",
      "description": "Step 2 description",
      "incident_role_id": "e1140b7c-355c-4fab-b5a9-81b411813c75",
      "due_after_days": 7,
      "position": 2,
      "skippable": true,
      "created_at": "2025-04-18T09:52:03.477-07:00",
      "updated_at": "2025-04-18T09:52:04.898-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
retrospective_step updated
data
object
required