POST api/Doctor/SaveDoctorBreaks

Request Information

URI Parameters

None.

Body Parameters

SaveDoctorBreaksInput
NameDescriptionTypeAdditional information
BreakId

integer

None.

DoctorID

integer

None.

FacilityID

integer

None.

IsBlock

boolean

None.

BreakName

string

None.

BreakDate

string

None.

StartTime

string

None.

EndTime

string

None.

FrequencyType

string

None.

FrequencyLevel

integer

None.

WeekDays

string

None.

MonthlyRepeatDay

boolean

None.

BreakEndOn

string

None.

EncodedBy

integer

None.

RecurringRule

string

None.

Request Formats

application/json, text/json

Sample:
{
  "BreakId": 1,
  "DoctorID": 2,
  "FacilityID": 3,
  "IsBlock": true,
  "BreakName": "sample string 5",
  "BreakDate": "sample string 6",
  "StartTime": "sample string 7",
  "EndTime": "sample string 8",
  "FrequencyType": "sample string 9",
  "FrequencyLevel": 10,
  "WeekDays": "sample string 11",
  "MonthlyRepeatDay": true,
  "BreakEndOn": "sample string 13",
  "EncodedBy": 14,
  "RecurringRule": "sample string 15"
}

application/xml, text/xml

Sample:
<SaveDoctorBreaksInput xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FindDoctorService">
  <BreakDate>sample string 6</BreakDate>
  <BreakEndOn>sample string 13</BreakEndOn>
  <BreakId>1</BreakId>
  <BreakName>sample string 5</BreakName>
  <DoctorID>2</DoctorID>
  <EncodedBy>14</EncodedBy>
  <EndTime>sample string 8</EndTime>
  <FacilityID>3</FacilityID>
  <FrequencyLevel>10</FrequencyLevel>
  <FrequencyType>sample string 9</FrequencyType>
  <IsBlock>true</IsBlock>
  <MonthlyRepeatDay>true</MonthlyRepeatDay>
  <RecurringRule>sample string 15</RecurringRule>
  <StartTime>sample string 7</StartTime>
  <WeekDays>sample string 11</WeekDays>
</SaveDoctorBreaksInput>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

HttpResponseMessage
NameDescriptionTypeAdditional information
Version

Version

None.

Content

HttpContent

None.

StatusCode

HttpStatusCode

None.

ReasonPhrase

string

None.

Headers

Collection of Object

None.

RequestMessage

HttpRequestMessage

None.

IsSuccessStatusCode

boolean

None.