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": "a35b32d2-ab55-4912-a845-4749cd74fe03",
    "type": "retrospective_process_groups",
    "attributes": {
      "retrospective_process_id": "f4323aa5-d6fb-49c0-b823-67aca2c62ba6",
      "sub_status_id": "2fa304d8-acae-4c76-9408-20b28e104d10",
      "position": 3,
      "updated_at": "2025-03-28T17:59:30.847-07:00",
      "created_at": "2025-03-28T17:59:30.847-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