POST api/WorkingHours/CheckPrimaryCareWorkingHoursAvailability
Request Information
URI Parameters
None.
Body Parameters
GetWorkingHoursModel| Name | Description | Type | Additional information |
|---|---|---|---|
| ScheduleKey | string |
None. |
|
| Date | date |
None. |
|
| AccountRoomModels | Collection of AccountRoomModel |
None. |
|
| IncludePhysicalRoomsAvailabilty | boolean |
None. |
|
| DayOfWeek | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"ScheduleKey": "sample string 1",
"Date": "2025-12-10T12:41:44.4620119+02:00",
"AccountRoomModels": [
{
"AccountKey": "sample string 1",
"RoomKey": "sample string 2",
"SpecialtyGroupId": 3,
"BranchKey": "sample string 4"
},
{
"AccountKey": "sample string 1",
"RoomKey": "sample string 2",
"SpecialtyGroupId": 3,
"BranchKey": "sample string 4"
}
],
"IncludePhysicalRoomsAvailabilty": true,
"DayOfWeek": "sample string 3"
}
application/xml, text/xml
Sample:
<GetWorkingHoursModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Vezeeta.Schedule.Models.Schedule.WorkingHours">
<AccountRoomModels xmlns:d2p1="http://schemas.datacontract.org/2004/07/Vezeeta.Schedule.Models">
<d2p1:AccountRoomModel>
<d2p1:AccountKey>sample string 1</d2p1:AccountKey>
<d2p1:BranchKey>sample string 4</d2p1:BranchKey>
<d2p1:RoomKey>sample string 2</d2p1:RoomKey>
<d2p1:SpecialtyGroupId>3</d2p1:SpecialtyGroupId>
</d2p1:AccountRoomModel>
<d2p1:AccountRoomModel>
<d2p1:AccountKey>sample string 1</d2p1:AccountKey>
<d2p1:BranchKey>sample string 4</d2p1:BranchKey>
<d2p1:RoomKey>sample string 2</d2p1:RoomKey>
<d2p1:SpecialtyGroupId>3</d2p1:SpecialtyGroupId>
</d2p1:AccountRoomModel>
</AccountRoomModels>
<Date>2025-12-10T12:41:44.4620119+02:00</Date>
<DayOfWeek>sample string 3</DayOfWeek>
<IncludePhysicalRoomsAvailabilty>true</IncludePhysicalRoomsAvailabilty>
<ScheduleKey>sample string 1</ScheduleKey>
</GetWorkingHoursModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |