- Update calendar items' schedules using this endpoint.
Get all schedule presets
Generate a description of a schedule's recurrence
Calculate future occurrences based on the new schedules and the old frequencies
Update calendar items' sc...
PUT /v3/schedules/calendar
Security
API_Key
PUT
curl -i -X PUT \
https://api.observepoint.com/v3/schedules/calendar \
-H 'Authorization: YOUR_API_KEY_HERE' \
-H 'Content-Type: application/json' \
-d '{
"updateItems": [
{
"itemType": "AUDIT",
"itemId": 0,
"schedule": {
"dtStart": "string",
"tzId": "string",
"recurrenceRule": "string",
"isPaused": true,
"exceptions": [
"string"
]
}
}
]
}'