PUT
/
v1
/
retrospective_process_groups
/
{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": "febcd307-26b9-42f1-afc0-4682ca322476",
    "type": "retrospective_process_groups",
    "attributes": {
      "retrospective_process_id": "769ef5cd-cf84-4e9b-b3c2-c5ef65f7b41e",
      "sub_status_id": "e401f5cb-e0eb-4a1d-bf6a-e04a93b02eef",
      "position": 1,
      "updated_at": "2025-04-20T05:24:55.084-07:00",
      "created_at": "2025-04-20T05:24:55.084-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

id
string
required

Body

application/vnd.api+json
data
object
required

Response

200 - application/vnd.api+json
retrospective_process_group updated
data
object
required