POST
/
v1
/
retrospective_process_groups
/
{retrospective_process_group_id}
/
steps
Creates a retrospective process group step
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": "1aca750a-97ab-4cd1-a5b8-69cf6a0d2120",
    "type": "retrospective_process_group_steps",
    "attributes": {
      "retrospective_process_group_id": "b6b5a12a-ece4-45bb-a55a-456f9f622ec5",
      "retrospective_step_id": "1efe3e3d-23a0-4ddb-968f-36d5084d573e",
      "position": 1,
      "updated_at": "2025-07-17T11:06:23.672-07:00",
      "created_at": "2025-07-17T11:06:23.672-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.