Delete a specific schedule rotation user by id
curl --request DELETE \
--url https://api.rootly.com/v1/schedule_rotation_users/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "7ba2ac56-cd94-4497-bdae-fc7960b6f0ff",
"type": "schedule_rotation_users",
"attributes": {
"schedule_rotation_id": "bfe5efe6-fc50-4e1b-a7b7-83393607d0e0",
"user_id": 409,
"position": 2,
"created_at": "2025-07-23T05:32:44.312-07:00",
"updated_at": "2025-07-23T05:32:45.857-07:00"
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
schedule_rotation_user deleted
The response is of type object
.
Was this page helpful?
curl --request DELETE \
--url https://api.rootly.com/v1/schedule_rotation_users/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "7ba2ac56-cd94-4497-bdae-fc7960b6f0ff",
"type": "schedule_rotation_users",
"attributes": {
"schedule_rotation_id": "bfe5efe6-fc50-4e1b-a7b7-83393607d0e0",
"user_id": 409,
"position": 2,
"created_at": "2025-07-23T05:32:44.312-07:00",
"updated_at": "2025-07-23T05:32:45.857-07:00"
}
}
}