Skip to main content
PUT
/
v1
/
retrospective_steps
/
{id}
Update a retrospective step
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": "6045b7e1-ae93-49a7-b4f2-4fd9e444127c",
    "type": "retrospective_steps",
    "attributes": {
      "retrospective_process_id": "0d72bec8-c283-4352-85c3-1b15ff003874",
      "title": "Step 2",
      "description": "Step 2 description",
      "incident_role_id": "5bd91b73-3f47-436b-a0d2-6e7359a17d89",
      "due_after_days": 7,
      "position": 2,
      "skippable": true,
      "created_at": "2026-02-16T14:42:05.345-08:00",
      "updated_at": "2026-02-16T14:42:05.940-08: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

retrospective_step updated

data
object
required