Creates a new retrospective process group from provided data
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": "ca9a0f90-539c-46c6-8236-a0a5595f969a",
"type": "retrospective_process_groups",
"attributes": {
"retrospective_process_id": "6f72bd12-246b-4db0-871f-3eeca40e4278",
"sub_status_id": "7a2c7a74-7f5b-475a-810c-6f9ecde5f47f",
"position": 3,
"updated_at": "2025-07-17T11:06:29.583-07:00",
"created_at": "2025-07-17T11:06:29.583-07:00"
},
"relationships": {
"retrospective_process_group_steps": {
"data": []
}
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
retrospective_process_group created
The response is of type object
.
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": "ca9a0f90-539c-46c6-8236-a0a5595f969a",
"type": "retrospective_process_groups",
"attributes": {
"retrospective_process_id": "6f72bd12-246b-4db0-871f-3eeca40e4278",
"sub_status_id": "7a2c7a74-7f5b-475a-810c-6f9ecde5f47f",
"position": 3,
"updated_at": "2025-07-17T11:06:29.583-07:00",
"created_at": "2025-07-17T11:06:29.583-07:00"
},
"relationships": {
"retrospective_process_group_steps": {
"data": []
}
}
}
}