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": "d4c836ff-8133-45c2-911d-24c2ad322b1c",
"type": "retrospective_steps",
"attributes": {
"retrospective_process_id": "1e78264a-2200-4797-be60-7c2492fe6bf0",
"title": "Step 2",
"description": "Step 2 description",
"incident_role_id": "7d9ee70d-82bf-4a20-a5c2-2a2bda7b94a3",
"due_after_days": 7,
"position": 2,
"skippable": true,
"created_at": "2025-07-25T14:36:58.893-07:00",
"updated_at": "2025-07-25T14:36:59.992-07:00"
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
retrospective_step updated
The response is of type object
.
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": "d4c836ff-8133-45c2-911d-24c2ad322b1c",
"type": "retrospective_steps",
"attributes": {
"retrospective_process_id": "1e78264a-2200-4797-be60-7c2492fe6bf0",
"title": "Step 2",
"description": "Step 2 description",
"incident_role_id": "7d9ee70d-82bf-4a20-a5c2-2a2bda7b94a3",
"due_after_days": 7,
"position": 2,
"skippable": true,
"created_at": "2025-07-25T14:36:58.893-07:00",
"updated_at": "2025-07-25T14:36:59.992-07:00"
}
}
}