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": "5085d7e8-9156-4a28-8f7a-ede94e2dff73",
"type": "incident_retrospective_steps",
"attributes": {
"retrospective_step_id": "7cb79592-da05-4a8b-943c-485e27a3e17e",
"incident_id": "d1b69fe6-11ac-46b3-a04b-6ef997a7c01e",
"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-08-08T21:52:43.300-07:00",
"updated_at": "2025-08-08T21:52:43.827-07:00"
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
incident_retrospective_step updated
The response is of type object
.
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": "5085d7e8-9156-4a28-8f7a-ede94e2dff73",
"type": "incident_retrospective_steps",
"attributes": {
"retrospective_step_id": "7cb79592-da05-4a8b-943c-485e27a3e17e",
"incident_id": "d1b69fe6-11ac-46b3-a04b-6ef997a7c01e",
"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-08-08T21:52:43.300-07:00",
"updated_at": "2025-08-08T21:52:43.827-07:00"
}
}
}