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": "73f1887e-6a6e-4da7-933c-0818e65ada7d",
    "type": "retrospective_process_group_steps",
    "attributes": {
      "retrospective_process_group_id": "21c0994e-6df2-4798-a144-f73fbf338ae9",
      "retrospective_step_id": "b1ed48e6-8521-4fb5-a5e1-411e46961c63",
      "position": 2,
      "updated_at": "2025-03-19T07:54:24.540-07:00",
      "created_at": "2025-03-19T07:54:24.392-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
data
object
required

Response

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

Was this page helpful?