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_active_day updated
Update a specific schedule rotation active day by id
curl --request PUT \
--url https://api.rootly.com/v1/schedule_rotation_active_days/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/vnd.api+json' \
--data '{
"data": {
"type": "schedule_rotation_active_days",
"attributes": {
"day_name": "S",
"active_time_attributes": [
{
"start_time": "<string>",
"end_time": "<string>"
}
]
}
}
}'
{
"data": {
"id": "07c02269-af8f-40bc-be33-4e369276f404",
"type": "schedule_rotation_active_days",
"attributes": {
"schedule_rotation_id": "f4689a67-5302-4894-a2e5-537cb93f48ce",
"day_name": "M",
"created_at": "2025-10-05T17:27:59.055-07:00",
"updated_at": "2025-10-05T17:27:59.854-07:00",
"active_time_attributes": [
{
"start_time": "10:30",
"end_time": "03:30"
}
]
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Show child attributes
schedule_rotation_active_day updated
Show child attributes
Was this page helpful?
curl --request PUT \
--url https://api.rootly.com/v1/schedule_rotation_active_days/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/vnd.api+json' \
--data '{
"data": {
"type": "schedule_rotation_active_days",
"attributes": {
"day_name": "S",
"active_time_attributes": [
{
"start_time": "<string>",
"end_time": "<string>"
}
]
}
}
}'
{
"data": {
"id": "07c02269-af8f-40bc-be33-4e369276f404",
"type": "schedule_rotation_active_days",
"attributes": {
"schedule_rotation_id": "f4689a67-5302-4894-a2e5-537cb93f48ce",
"day_name": "M",
"created_at": "2025-10-05T17:27:59.055-07:00",
"updated_at": "2025-10-05T17:27:59.854-07:00",
"active_time_attributes": [
{
"start_time": "10:30",
"end_time": "03:30"
}
]
}
}
}