Creates a new retrospective step from provided data
curl --request POST \
--url https://api.rootly.com/v1/retrospective_processes/{retrospective_process_id}/retrospective_steps \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/vnd.api+json' \
--data '{
"data": {
"type": "retrospective_steps",
"attributes": {
"title": "<string>",
"description": "<string>",
"due_after_days": 123,
"incident_role_id": "<string>",
"position": 123,
"skippable": true
}
}
}'
{
"data": {
"id": "c10e0b44-f049-49fa-8d61-38e9672532a5",
"type": "retrospective_steps",
"attributes": {
"retrospective_process_id": "b5993465-65bc-475f-951d-2eebc6dbf7ab",
"title": "Step 1",
"description": "Step 1 description",
"incident_role_id": "5dd2d46e-7950-4562-866d-eb7a430063ac",
"due_after_days": 5,
"position": 1,
"skippable": false,
"created_at": "2025-08-16T01:18:24.167-07:00",
"updated_at": "2025-08-16T01:18:24.167-07:00"
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
retrospective_step created
The response is of type object
.
Was this page helpful?
curl --request POST \
--url https://api.rootly.com/v1/retrospective_processes/{retrospective_process_id}/retrospective_steps \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/vnd.api+json' \
--data '{
"data": {
"type": "retrospective_steps",
"attributes": {
"title": "<string>",
"description": "<string>",
"due_after_days": 123,
"incident_role_id": "<string>",
"position": 123,
"skippable": true
}
}
}'
{
"data": {
"id": "c10e0b44-f049-49fa-8d61-38e9672532a5",
"type": "retrospective_steps",
"attributes": {
"retrospective_process_id": "b5993465-65bc-475f-951d-2eebc6dbf7ab",
"title": "Step 1",
"description": "Step 1 description",
"incident_role_id": "5dd2d46e-7950-4562-866d-eb7a430063ac",
"due_after_days": 5,
"position": 1,
"skippable": false,
"created_at": "2025-08-16T01:18:24.167-07:00",
"updated_at": "2025-08-16T01:18:24.167-07:00"
}
}
}