Update a specific RetrospectiveProcessGroup Step by 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": "d5bff1da-0319-46db-a09c-c2b5fad4af0a",
"type": "retrospective_process_group_steps",
"attributes": {
"retrospective_process_group_id": "b6b5a12a-ece4-45bb-a55a-456f9f622ec5",
"retrospective_step_id": "ebea96d3-ea79-4fa0-a9b2-68270c7dd0cd",
"position": 2,
"updated_at": "2025-07-17T11:06:26.175-07:00",
"created_at": "2025-07-17T11:06:26.025-07:00"
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
retrospective_process_group_step updated
The response is of type object
.
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": "d5bff1da-0319-46db-a09c-c2b5fad4af0a",
"type": "retrospective_process_group_steps",
"attributes": {
"retrospective_process_group_id": "b6b5a12a-ece4-45bb-a55a-456f9f622ec5",
"retrospective_step_id": "ebea96d3-ea79-4fa0-a9b2-68270c7dd0cd",
"position": 2,
"updated_at": "2025-07-17T11:06:26.175-07:00",
"created_at": "2025-07-17T11:06:26.025-07:00"
}
}
}