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": "acd47f15-9764-4b94-9bb9-4bb0e1390f47",
    "type": "retrospective_process_group_steps",
    "attributes": {
      "retrospective_process_group_id": "68fe2e1b-c8de-47ad-b538-8c1c78ef4281",
      "retrospective_step_id": "6be6ec43-61b7-4a1b-834e-87c0357eb42e",
      "position": 2,
      "updated_at": "2025-05-08T00:23:47.853-07:00",
      "created_at": "2025-05-08T00:23:47.695-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.