Get event calendar availability schedule
GET/calendars/schedules/event-calendar/:calendarId
Retrieve the availability schedule for a specific event calendar. Returns the schedule associated with the calendar ID provided in the path.
Request
Version stringrequired
API Version
Available options
v3calendarId stringrequired
Unique identifier of the event calendar
Schedule retrieved successfully for the event calendar
- application/json
- Schema
- Example (auto)
Schema
scheduleobjectrequired
The event calendar schedule
{
"schedule": {
"timezone": "America/New_York",
"rules": [
{
"type": "weekday",
"day": "monday",
"intervals": [
{
"from": "09:00",
"to": "17:00"
}
]
}
],
"calendarId": "WvVX9LpvlBO6K506xLbp"
}
}