Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
Body
application/vnd.api+json
Response
schedule_rotation_user updated
Update a specific schedule rotation user by id
curl --request PUT \
--url https://api.rootly.com/v1/schedule_rotation_users/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/vnd.api+json' \
--data '{
"data": {
"type": "schedule_rotation_users",
"attributes": {
"user_id": 123,
"position": 123
}
}
}'
{
"data": {
"id": "bb1fdbae-e755-481d-bfe7-5df4a9a3710b",
"type": "schedule_rotation_users",
"attributes": {
"schedule_rotation_id": "6a7fed4b-5474-46dd-a001-afadab71e8ec",
"user_id": 457,
"position": 2,
"created_at": "2025-10-18T10:30:14.315-07:00",
"updated_at": "2025-10-18T10:30:14.331-07:00"
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Show child attributes
schedule_rotation_user updated
Show child attributes
Was this page helpful?
curl --request PUT \
--url https://api.rootly.com/v1/schedule_rotation_users/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/vnd.api+json' \
--data '{
"data": {
"type": "schedule_rotation_users",
"attributes": {
"user_id": 123,
"position": 123
}
}
}'
{
"data": {
"id": "bb1fdbae-e755-481d-bfe7-5df4a9a3710b",
"type": "schedule_rotation_users",
"attributes": {
"schedule_rotation_id": "6a7fed4b-5474-46dd-a001-afadab71e8ec",
"user_id": 457,
"position": 2,
"created_at": "2025-10-18T10:30:14.315-07:00",
"updated_at": "2025-10-18T10:30:14.331-07:00"
}
}
}