POST
/
v1
/
retrospective_processes
/
{retrospective_process_id}
/
groups
Creates a retrospective process group
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": "fd34f888-68fb-4cfe-805c-9ce1bae89ef8",
    "type": "retrospective_process_groups",
    "attributes": {
      "retrospective_process_id": "286f2333-d063-41e1-862a-fac4b9437961",
      "sub_status_id": "243af219-bedc-423e-97c1-089791892335",
      "position": 3,
      "updated_at": "2025-07-11T12:29:45.220-07:00",
      "created_at": "2025-07-11T12:29:45.220-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

Response

201
application/vnd.api+json

retrospective_process_group created

The response is of type object.