Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
Body
application/vnd.api+json
Response
incident_retrospective_step updated
Update a specific incident retrospective step by id
curl --request PUT \
--url https://api.rootly.com/v1/incident_retrospective_steps/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/vnd.api+json' \
--data '{
"data": {
"type": "incident_retrospective_steps",
"attributes": {
"title": "<string>",
"description": "<string>",
"due_date": "<string>",
"position": 123,
"skippable": true,
"status": "todo"
}
}
}'
{
"data": {
"id": "b696d4a2-c3ec-4215-afe6-df547d10605a",
"type": "incident_retrospective_steps",
"attributes": {
"retrospective_step_id": "89a6b7b1-0940-41ae-ba85-ff27fc151aec",
"incident_id": "847a8db0-3832-418f-81ee-f4d19df8ba56",
"title": "Step 2",
"description": "Step 2 description",
"due_date": "2024-12-05T08:10:58.323-08:00",
"user_id": null,
"kind": "custom",
"position": 2,
"skippable": true,
"status": "todo",
"status_changed_at": null,
"status_changed_by_id": null,
"created_at": "2025-10-13T07:18:04.564-07:00",
"updated_at": "2025-10-13T07:18:04.994-07:00"
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Show child attributes
incident_retrospective_step updated
Show child attributes
Was this page helpful?
curl --request PUT \
--url https://api.rootly.com/v1/incident_retrospective_steps/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/vnd.api+json' \
--data '{
"data": {
"type": "incident_retrospective_steps",
"attributes": {
"title": "<string>",
"description": "<string>",
"due_date": "<string>",
"position": 123,
"skippable": true,
"status": "todo"
}
}
}'
{
"data": {
"id": "b696d4a2-c3ec-4215-afe6-df547d10605a",
"type": "incident_retrospective_steps",
"attributes": {
"retrospective_step_id": "89a6b7b1-0940-41ae-ba85-ff27fc151aec",
"incident_id": "847a8db0-3832-418f-81ee-f4d19df8ba56",
"title": "Step 2",
"description": "Step 2 description",
"due_date": "2024-12-05T08:10:58.323-08:00",
"user_id": null,
"kind": "custom",
"position": 2,
"skippable": true,
"status": "todo",
"status_changed_at": null,
"status_changed_by_id": null,
"created_at": "2025-10-13T07:18:04.564-07:00",
"updated_at": "2025-10-13T07:18:04.994-07:00"
}
}
}