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": "32f85385-e699-440f-9195-cf535da7c8a4",
"type": "retrospective_steps",
"attributes": {
"retrospective_process_id": "9e846a2c-c474-4531-8836-c9f23bb34948",
"title": "Step 2",
"description": "Step 2 description",
"incident_role_id": "1eae828b-de23-43f1-b79e-c513068cab42",
"due_after_days": 7,
"position": 2,
"skippable": true,
"created_at": "2025-08-15T07:15:27.506-07:00",
"updated_at": "2025-08-15T07:15:28.301-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": "32f85385-e699-440f-9195-cf535da7c8a4",
"type": "retrospective_steps",
"attributes": {
"retrospective_process_id": "9e846a2c-c474-4531-8836-c9f23bb34948",
"title": "Step 2",
"description": "Step 2 description",
"incident_role_id": "1eae828b-de23-43f1-b79e-c513068cab42",
"due_after_days": 7,
"position": 2,
"skippable": true,
"created_at": "2025-08-15T07:15:27.506-07:00",
"updated_at": "2025-08-15T07:15:28.301-07:00"
}
}
}