GET api/v1/calendar/site/{code}/{year}/{month}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
code

string

Required

year

string

Required

month

string

Required

Body Parameters

None.

Response Information

Resource Description

Collection of MonthlyCalendarBindingModel
NameDescriptionTypeAdditional 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-07-01T21:21:52.9861186-04:00",
    "StartDate": "2024-07-01T21:21:52.9861186-04:00",
    "EndDate": "2024-07-01T21:21:52.9861186-04:00",
    "SiteStatus": "sample string 4",
    "AppointmentsScheduled": 5
  },
  {
    "Date": "2024-07-01T21:21:52.9861186-04:00",
    "StartDate": "2024-07-01T21:21:52.9861186-04:00",
    "EndDate": "2024-07-01T21:21:52.9861186-04: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-07-01T21:21:52.9861186-04:00</Date>
    <EndDate>2024-07-01T21:21:52.9861186-04:00</EndDate>
    <SiteStatus>sample string 4</SiteStatus>
    <StartDate>2024-07-01T21:21:52.9861186-04:00</StartDate>
  </MonthlyCalendarBindingModel>
  <MonthlyCalendarBindingModel>
    <AppointmentsScheduled>5</AppointmentsScheduled>
    <Date>2024-07-01T21:21:52.9861186-04:00</Date>
    <EndDate>2024-07-01T21:21:52.9861186-04:00</EndDate>
    <SiteStatus>sample string 4</SiteStatus>
    <StartDate>2024-07-01T21:21:52.9861186-04:00</StartDate>
  </MonthlyCalendarBindingModel>
</ArrayOfMonthlyCalendarBindingModel>