POST
/
v1
/
retrospective_process_groups
/
{retrospective_process_group_id}
/
steps
curl --request POST \
  --url https://api.rootly.com/v1/retrospective_process_groups/{retrospective_process_group_id}/steps \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/vnd.api+json' \
  --data '{
  "data": {
    "type": "retrospective_process_group_steps",
    "attributes": {
      "retrospective_step_id": "<string>",
      "position": 123
    }
  }
}'
{
  "data": {
    "id": "c8e621b2-443f-4ebe-a945-2bda8c07d67e",
    "type": "retrospective_process_group_steps",
    "attributes": {
      "retrospective_process_group_id": "e7eac457-0298-4b39-a72c-4458d9a86155",
      "retrospective_step_id": "d46807e4-6aaf-4c6c-a658-c6e6ae2412da",
      "position": 1,
      "updated_at": "2025-06-19T02:43:09.625-07:00",
      "created_at": "2025-06-19T02:43:09.625-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_group_id
string
required

Body

application/vnd.api+json

Response

201
application/vnd.api+json

retrospective_process_group_step created

The response is of type object.