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": "8dea7303-294c-4f9e-8644-39c5e4d6cede",
    "type": "retrospective_steps",
    "attributes": {
      "retrospective_process_id": "f4807b2e-8f21-47b3-9889-2bcf596f2438",
      "title": "Step 2",
      "description": "Step 2 description",
      "incident_role_id": "d7ca6cd7-36c0-468b-9f7b-7dd9507abdec",
      "due_after_days": 7,
      "position": 2,
      "skippable": true,
      "created_at": "2025-03-19T07:54:36.194-07:00",
      "updated_at": "2025-03-19T07:54:37.620-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