Updates a specific schedule by id
curl --request PUT \
--url https://api.rootly.com/v1/schedules/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/vnd.api+json' \
--data '{
"data": {
"type": "schedules",
"attributes": {
"name": "<string>",
"description": "<string>",
"all_time_coverage": true,
"slack_user_group": {
"id": "<string>",
"name": "<string>"
},
"owner_group_ids": [
"<string>"
],
"owner_user_id": 123
}
}
}'
{
"data": {
"id": "ef499461-b6e6-4e08-bb98-a4106bcdca43",
"type": "schedules",
"attributes": {
"name": "Updated schedule name",
"description": "Updated schedule description",
"all_time_coverage": true,
"slack_user_group": {},
"owner_user_id": 424,
"owner_group_ids": [
"9e805a96-4a69-4f7b-98f8-136526b7ae53"
],
"created_at": "2025-07-17T11:07:10.693-07:00",
"updated_at": "2025-07-17T11:07:19.810-07:00"
},
"relationships": {
"owner_user": {
"data": {
"id": "424",
"type": "users"
}
},
"escalation_policies": {
"data": []
}
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
schedule updated
The response is of type object
.
Was this page helpful?
curl --request PUT \
--url https://api.rootly.com/v1/schedules/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/vnd.api+json' \
--data '{
"data": {
"type": "schedules",
"attributes": {
"name": "<string>",
"description": "<string>",
"all_time_coverage": true,
"slack_user_group": {
"id": "<string>",
"name": "<string>"
},
"owner_group_ids": [
"<string>"
],
"owner_user_id": 123
}
}
}'
{
"data": {
"id": "ef499461-b6e6-4e08-bb98-a4106bcdca43",
"type": "schedules",
"attributes": {
"name": "Updated schedule name",
"description": "Updated schedule description",
"all_time_coverage": true,
"slack_user_group": {},
"owner_user_id": 424,
"owner_group_ids": [
"9e805a96-4a69-4f7b-98f8-136526b7ae53"
],
"created_at": "2025-07-17T11:07:10.693-07:00",
"updated_at": "2025-07-17T11:07:19.810-07:00"
},
"relationships": {
"owner_user": {
"data": {
"id": "424",
"type": "users"
}
},
"escalation_policies": {
"data": []
}
}
}
}