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": "3dfdf7e6-49bf-4b6a-ae53-a56f74c904a6",
    "type": "retrospective_steps",
    "attributes": {
      "retrospective_process_id": "05a5b091-4655-4f14-ba4f-03b6b8006ac3",
      "title": "Step 1",
      "description": "Step 1 description",
      "incident_role_id": "5754699a-280e-46ed-bbb8-9c195759316f",
      "due_after_days": 5,
      "position": 1,
      "skippable": false,
      "created_at": "2025-06-19T04:17:14.437-07:00",
      "updated_at": "2025-06-19T04:17:14.437-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.