Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
Body
application/vnd.api+json
Response
retrospective_step updated
Update a specific retrospective step by 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": "9e723b49-3e55-427e-8054-524d20ac0538",
"type": "retrospective_steps",
"attributes": {
"retrospective_process_id": "d39c2fc3-ec01-4247-b295-58727aff9bf4",
"title": "Step 2",
"description": "Step 2 description",
"incident_role_id": "fb255f4a-2eb8-417e-85cb-dc22f4575418",
"due_after_days": 7,
"position": 2,
"skippable": true,
"created_at": "2025-10-07T00:21:57.817-07:00",
"updated_at": "2025-10-07T00:21:58.765-07:00"
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Show child attributes
retrospective_step updated
Show child attributes
Was this page helpful?
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": "9e723b49-3e55-427e-8054-524d20ac0538",
"type": "retrospective_steps",
"attributes": {
"retrospective_process_id": "d39c2fc3-ec01-4247-b295-58727aff9bf4",
"title": "Step 2",
"description": "Step 2 description",
"incident_role_id": "fb255f4a-2eb8-417e-85cb-dc22f4575418",
"due_after_days": 7,
"position": 2,
"skippable": true,
"created_at": "2025-10-07T00:21:57.817-07:00",
"updated_at": "2025-10-07T00:21:58.765-07:00"
}
}
}