Delete a specific schedule by id
curl --request DELETE \
--url https://api.rootly.com/v1/schedules/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "43477284-f169-439e-a457-99ff1d782235",
"type": "schedules",
"attributes": {
"name": "Schedule 10",
"description": "Schedule description",
"all_time_coverage": false,
"slack_user_group": {},
"owner_user_id": 440,
"owner_group_ids": [
"98c53d37-8b0f-49fe-a640-b8f55c0a985d"
],
"created_at": "2025-09-11T13:34:18.403-07:00",
"updated_at": "2025-09-11T13:34:25.288-07:00"
},
"relationships": {
"owner_user": {
"data": {
"id": "440",
"type": "users"
}
},
"escalation_policies": {
"data": []
}
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
schedule deleted
The response is of type object
.
Was this page helpful?
curl --request DELETE \
--url https://api.rootly.com/v1/schedules/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "43477284-f169-439e-a457-99ff1d782235",
"type": "schedules",
"attributes": {
"name": "Schedule 10",
"description": "Schedule description",
"all_time_coverage": false,
"slack_user_group": {},
"owner_user_id": 440,
"owner_group_ids": [
"98c53d37-8b0f-49fe-a640-b8f55c0a985d"
],
"created_at": "2025-09-11T13:34:18.403-07:00",
"updated_at": "2025-09-11T13:34:25.288-07:00"
},
"relationships": {
"owner_user": {
"data": {
"id": "440",
"type": "users"
}
},
"escalation_policies": {
"data": []
}
}
}
}