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": "a7a199a3-e446-45e0-b873-ecfb0b008fff",
    "type": "retrospective_steps",
    "attributes": {
      "retrospective_process_id": "7d3e0e55-55b9-47fa-89de-fa10f3e39642",
      "title": "Step 1",
      "description": "Step 1 description",
      "incident_role_id": "6786d375-7753-49ac-aa7f-af75d27ab6a9",
      "due_after_days": 5,
      "position": 1,
      "skippable": false,
      "created_at": "2025-05-08T00:24:00.204-07:00",
      "updated_at": "2025-05-08T00:24:00.204-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.