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": "436a6278-eb6a-40ba-b033-fe5672ded8fd",
"type": "retrospective_process_groups",
"attributes": {
"retrospective_process_id": "ecb75cde-9dbf-4425-9f0b-aa9b67bee779",
"sub_status_id": "a749d0a3-f184-483d-b1c1-38a3eb289c67",
"position": 3,
"updated_at": "2025-08-01T01:59:42.882-07:00",
"created_at": "2025-08-01T01:59:42.882-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": "436a6278-eb6a-40ba-b033-fe5672ded8fd",
"type": "retrospective_process_groups",
"attributes": {
"retrospective_process_id": "ecb75cde-9dbf-4425-9f0b-aa9b67bee779",
"sub_status_id": "a749d0a3-f184-483d-b1c1-38a3eb289c67",
"position": 3,
"updated_at": "2025-08-01T01:59:42.882-07:00",
"created_at": "2025-08-01T01:59:42.882-07:00"
},
"relationships": {
"retrospective_process_group_steps": {
"data": []
}
}
}
}