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 MonthlyCalendarBindingModel| Name | 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": "2025-11-04T00:36:04.9376218-05:00",
    "StartDate": "2025-11-04T00:36:04.9376218-05:00",
    "EndDate": "2025-11-04T00:36:04.9376218-05:00",
    "SiteStatus": "sample string 4",
    "AppointmentsScheduled": 5
  },
  {
    "Date": "2025-11-04T00:36:04.9376218-05:00",
    "StartDate": "2025-11-04T00:36:04.9376218-05:00",
    "EndDate": "2025-11-04T00:36:04.9376218-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>2025-11-04T00:36:04.9376218-05:00</Date>
    <EndDate>2025-11-04T00:36:04.9376218-05:00</EndDate>
    <SiteStatus>sample string 4</SiteStatus>
    <StartDate>2025-11-04T00:36:04.9376218-05:00</StartDate>
  </MonthlyCalendarBindingModel>
  <MonthlyCalendarBindingModel>
    <AppointmentsScheduled>5</AppointmentsScheduled>
    <Date>2025-11-04T00:36:04.9376218-05:00</Date>
    <EndDate>2025-11-04T00:36:04.9376218-05:00</EndDate>
    <SiteStatus>sample string 4</SiteStatus>
    <StartDate>2025-11-04T00:36:04.9376218-05:00</StartDate>
  </MonthlyCalendarBindingModel>
</ArrayOfMonthlyCalendarBindingModel>