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": "20d88319-2d0e-4c04-a60b-4b42f816ead6",
"type": "schedule_rotation_users",
"attributes": {
"schedule_rotation_id": "15455d0a-083a-4a8b-a820-574e814b36ef",
"user_id": 409,
"position": 2,
"created_at": "2025-08-12T10:51:02.180-07:00",
"updated_at": "2025-08-12T10:51:03.189-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": "20d88319-2d0e-4c04-a60b-4b42f816ead6",
"type": "schedule_rotation_users",
"attributes": {
"schedule_rotation_id": "15455d0a-083a-4a8b-a820-574e814b36ef",
"user_id": 409,
"position": 2,
"created_at": "2025-08-12T10:51:02.180-07:00",
"updated_at": "2025-08-12T10:51:03.189-07:00"
}
}
}