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": "5dfd489a-8cfd-4411-9c29-eb0b064c74f9",
    "type": "retrospective_process_groups",
    "attributes": {
      "retrospective_process_id": "9bd76688-f052-4bc3-b1c9-91b74c396706",
      "sub_status_id": "35279797-4cec-4a09-8a8a-4d8b8b93edbe",
      "position": 3,
      "updated_at": "2025-05-08T00:23:51.020-07:00",
      "created_at": "2025-05-08T00:23:51.020-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.