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": "a94bcb2b-103d-4fc2-9f05-77aebad857d0",
"type": "retrospective_steps",
"attributes": {
"retrospective_process_id": "8a9039df-e850-47a9-a023-425ef73e790f",
"title": "Step 1",
"description": "Step 1 description",
"incident_role_id": "f5794ddd-dfa1-44d2-951e-cb24ceee76cb",
"due_after_days": 5,
"position": 1,
"skippable": false,
"created_at": "2025-07-17T12:12:35.161-07:00",
"updated_at": "2025-07-17T12:12:35.161-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": "a94bcb2b-103d-4fc2-9f05-77aebad857d0",
"type": "retrospective_steps",
"attributes": {
"retrospective_process_id": "8a9039df-e850-47a9-a023-425ef73e790f",
"title": "Step 1",
"description": "Step 1 description",
"incident_role_id": "f5794ddd-dfa1-44d2-951e-cb24ceee76cb",
"due_after_days": 5,
"position": 1,
"skippable": false,
"created_at": "2025-07-17T12:12:35.161-07:00",
"updated_at": "2025-07-17T12:12:35.161-07:00"
}
}
}