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": "ca5c5166-7633-4aef-89df-1a771e98f23b",
    "type": "retrospective_process_group_steps",
    "attributes": {
      "retrospective_process_group_id": "57338785-fd95-4899-b9fa-1e10de9dfb4c",
      "retrospective_step_id": "b80dcd77-8093-4539-9ba6-98d265542b27",
      "position": 1,
      "updated_at": "2025-04-18T18:22:18.332-07:00",
      "created_at": "2025-04-18T18:22:18.332-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
data
object
required

Response

201
application/vnd.api+json
retrospective_process_group_step created
data
object
required