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": "f08a21a5-fe21-4509-b7a4-6c8e0db1f2af",
"type": "schedule_rotation_active_days",
"attributes": {
"schedule_rotation_id": "b004a4ef-1757-4338-bcbf-f4fa854ac883",
"day_name": "M",
"created_at": "2025-12-13T18:52:07.754-08:00",
"updated_at": "2025-12-13T18:52:08.437-08: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_days Show child attributes
Schedule rotation day name for which active times to be created
S, M, T, W, R, F, U schedule_rotation_active_day updated
Show child attributes
Unique ID of the schedule rotation active time
schedule_rotation_active_days Show child attributes
Schedule rotation day name for which active times to be created
S, M, T, W, R, F, U Date of creation
Date of last update
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": "f08a21a5-fe21-4509-b7a4-6c8e0db1f2af",
"type": "schedule_rotation_active_days",
"attributes": {
"schedule_rotation_id": "b004a4ef-1757-4338-bcbf-f4fa854ac883",
"day_name": "M",
"created_at": "2025-12-13T18:52:07.754-08:00",
"updated_at": "2025-12-13T18:52:08.437-08:00",
"active_time_attributes": [
{
"start_time": "10:30",
"end_time": "03:30"
}
]
}
}
}