GET api/v1/calendar/site/{code}/{year}/{month}
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
code | string |
Required |
|
year | string |
Required |
|
month | string |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of MonthlyCalendarBindingModelName | Description | Type | Additional information |
---|---|---|---|
Date | date |
None. |
|
StartDate | date |
None. |
|
EndDate | date |
None. |
|
SiteStatus | string |
None. |
|
AppointmentsScheduled | integer |
None. |
Response Formats
application/json, text/json
Sample:
[ { "Date": "2024-11-21T04:48:58.1024164-05:00", "StartDate": "2024-11-21T04:48:58.1024164-05:00", "EndDate": "2024-11-21T04:48:58.1024164-05:00", "SiteStatus": "sample string 4", "AppointmentsScheduled": 5 }, { "Date": "2024-11-21T04:48:58.1024164-05:00", "StartDate": "2024-11-21T04:48:58.1024164-05:00", "EndDate": "2024-11-21T04:48:58.1024164-05:00", "SiteStatus": "sample string 4", "AppointmentsScheduled": 5 } ]
application/xml, text/xml
Sample:
<ArrayOfMonthlyCalendarBindingModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Prometric.Scheduling.Api.Models.Calendar"> <MonthlyCalendarBindingModel> <AppointmentsScheduled>5</AppointmentsScheduled> <Date>2024-11-21T04:48:58.1024164-05:00</Date> <EndDate>2024-11-21T04:48:58.1024164-05:00</EndDate> <SiteStatus>sample string 4</SiteStatus> <StartDate>2024-11-21T04:48:58.1024164-05:00</StartDate> </MonthlyCalendarBindingModel> <MonthlyCalendarBindingModel> <AppointmentsScheduled>5</AppointmentsScheduled> <Date>2024-11-21T04:48:58.1024164-05:00</Date> <EndDate>2024-11-21T04:48:58.1024164-05:00</EndDate> <SiteStatus>sample string 4</SiteStatus> <StartDate>2024-11-21T04:48:58.1024164-05:00</StartDate> </MonthlyCalendarBindingModel> </ArrayOfMonthlyCalendarBindingModel>