PUT
/
v1
/
retrospective_process_group_steps
/
{id}
curl --request PUT \
  --url https://api.rootly.com/v1/retrospective_process_group_steps/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/vnd.api+json' \
  --data '{
  "data": {
    "type": "retrospective_process_group_steps",
    "attributes": {
      "position": 123
    }
  }
}'
{
  "data": {
    "id": "61347ae2-f849-430e-9338-f4967ba9eef1",
    "type": "retrospective_process_group_steps",
    "attributes": {
      "retrospective_process_group_id": "22ae6ae5-36a0-4216-b0d6-2fe5003fcc19",
      "retrospective_step_id": "f0c56f99-daa5-4ed4-ab9f-5675fd9c036e",
      "position": 2,
      "updated_at": "2025-07-05T07:47:16.750-07:00",
      "created_at": "2025-07-05T07:47:16.590-07:00"
    }
  }
}

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

Response

200 - application/vnd.api+json

retrospective_process_group_step updated

The response is of type object.