GET api/ProviderService/GetCalendarSettings?practiceID={practiceID}

Get Calendar Settings

Request Information

URI Parameters

NameDescriptionTypeAdditional information
practiceID

globally unique identifier

Required

Body Parameters

None.

Response Information

Resource Description

CalendarSetting
NameDescriptionTypeAdditional information
StartHour

time interval

None.

EndHour

time interval

None.

ApptInterval

integer

None.

SelectedDate

string

None.

CalculatedRowsCount

integer

None.

AppointmentTypeId

integer

None.

SelectedProviders

string

None.

SelectedRooms

string

None.

Response Formats

application/json, text/json

Sample:
{
  "StartHour": "00:00:00.1234567",
  "EndHour": "00:00:00.1234567",
  "ApptInterval": 3,
  "SelectedDate": "sample string 4",
  "CalculatedRowsCount": 5,
  "AppointmentTypeId": 1,
  "SelectedProviders": "sample string 6",
  "SelectedRooms": "sample string 7"
}

application/xml, text/xml

Sample:
<CalendarSetting xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EMR.Screens.Models">
  <AppointmentTypeId>1</AppointmentTypeId>
  <ApptInterval>3</ApptInterval>
  <CalculatedRowsCount>5</CalculatedRowsCount>
  <EndHour>PT0.1234567S</EndHour>
  <SelectedDate>sample string 4</SelectedDate>
  <SelectedProviders>sample string 6</SelectedProviders>
  <SelectedRooms>sample string 7</SelectedRooms>
  <StartHour>PT0.1234567S</StartHour>
</CalendarSetting>