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": "11760103-53bf-43d1-a593-6d0548e9d738",
    "type": "retrospective_process_group_steps",
    "attributes": {
      "retrospective_process_group_id": "13abf72e-f039-4079-9c57-97b298915f0a",
      "retrospective_step_id": "d51ddff5-7bbf-4ae1-a43a-c714c265fcae",
      "position": 1,
      "updated_at": "2025-05-29T17:47:27.136-07:00",
      "created_at": "2025-05-29T17:47:27.136-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.