Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
Body
application/vnd.api+json
Response
200 - application/vnd.api+json
retrospective_process_group updated
Update a specific Retrospective Process Group by id
curl --request PUT \
--url https://api.rootly.com/v1/retrospective_process_groups/{id} \
--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": "1beb4b32-4667-4a92-b780-146281a1d00a",
"type": "retrospective_process_groups",
"attributes": {
"retrospective_process_id": "ae4f39af-3dfc-48a3-a9ad-f3fd518bac13",
"sub_status_id": "cec822e0-c2fd-439f-9d41-ce3ed3069212",
"position": 1,
"updated_at": "2025-10-18T10:29:53.366-07:00",
"created_at": "2025-10-18T10:29:53.366-07:00"
},
"relationships": {
"retrospective_process_group_steps": {
"data": []
}
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Show child attributes
retrospective_process_group updated
Show child attributes
Was this page helpful?
curl --request PUT \
--url https://api.rootly.com/v1/retrospective_process_groups/{id} \
--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": "1beb4b32-4667-4a92-b780-146281a1d00a",
"type": "retrospective_process_groups",
"attributes": {
"retrospective_process_id": "ae4f39af-3dfc-48a3-a9ad-f3fd518bac13",
"sub_status_id": "cec822e0-c2fd-439f-9d41-ce3ed3069212",
"position": 1,
"updated_at": "2025-10-18T10:29:53.366-07:00",
"created_at": "2025-10-18T10:29:53.366-07:00"
},
"relationships": {
"retrospective_process_group_steps": {
"data": []
}
}
}
}