POST
/
v1
/
retrospective_processes
/
{retrospective_process_id}
/
retrospective_steps
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": "be446a5c-a2a8-4444-affa-ab4f3fdfe860",
    "type": "retrospective_steps",
    "attributes": {
      "retrospective_process_id": "127a1f43-f0af-4d36-8b72-c22e89e21f1f",
      "title": "Step 1",
      "description": "Step 1 description",
      "incident_role_id": "1b8c10cc-398d-4ae0-a067-229d690e21a7",
      "due_after_days": 5,
      "position": 1,
      "skippable": false,
      "created_at": "2025-07-09T03:06:44.030-07:00",
      "updated_at": "2025-07-09T03:06:44.030-07:00"
    }
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

retrospective_process_id
string
required

Body

application/vnd.api+json

Response

201
application/vnd.api+json

retrospective_step created

The response is of type object.