POST
/
v1
/
retrospective_processes
/
{retrospective_process_id}
/
groups
curl --request POST \
  --url https://api.rootly.com/v1/retrospective_processes/{retrospective_process_id}/groups \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/vnd.api+json' \
  --data '{
  "data": {
    "type": "retrospective_process_groups",
    "attributes": {
      "sub_status_id": "<string>",
      "position": 123
    }
  }
}'
{
  "data": {
    "id": "3303dcc0-faa3-4c54-85fe-dca2ad159608",
    "type": "retrospective_process_groups",
    "attributes": {
      "retrospective_process_id": "75a51cd3-18bc-4145-84ce-3271b810128b",
      "sub_status_id": "0d77fd65-1d19-42c8-91d8-172b7deb8f1b",
      "position": 3,
      "updated_at": "2025-03-26T23:24:10.584-07:00",
      "created_at": "2025-03-26T23:24:10.584-07:00"
    },
    "relationships": {
      "retrospective_process_group_steps": {
        "data": []
      }
    }
  }
}

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
data
object
required

Response

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