GET api/availabledoctorshours/search?accountNumber={accountNumber}&requestDate={requestDate}&locationId={locationId}&selectedDoctorId={selectedDoctorId}&appointmentRequestReasonId={appointmentRequestReasonId}
Returns a list of available doctors and time.
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
accountNumber |
Account number |
string |
Required |
requestDate |
Date of request |
date |
Required |
locationId |
Unique ID of location |
globally unique identifier |
Required |
selectedDoctorId |
Unique ID of selected doctor |
globally unique identifier |
Required |
appointmentRequestReasonId |
Unique ID of appointment request reason |
globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
ListModelOfAvailableDoctorsHoursModelName | Description | Type | Additional information |
---|---|---|---|
TotalItems | integer |
None. |
|
ItemsPerPage | integer |
None. |
|
CurrentPage | integer |
None. |
|
TotalPages | integer |
None. |
|
FirstRowOnPage | integer |
None. |
|
LastRowOnPage | integer |
None. |
|
Rows | Collection of AvailableDoctorsHoursModel |
None. |
Response Formats
application/json, text/json
Sample:
{ "TotalItems": 1, "ItemsPerPage": 2, "CurrentPage": 3, "TotalPages": 4, "FirstRowOnPage": 5, "LastRowOnPage": 6, "Rows": [ { "DoctorId": "1e014385-4a5f-4224-b615-a33c2365d64f", "DoctorFullName": "sample string 2", "Hour": 3, "Minutes": 4 }, { "DoctorId": "1e014385-4a5f-4224-b615-a33c2365d64f", "DoctorFullName": "sample string 2", "Hour": 3, "Minutes": 4 } ] }
application/xml, text/xml
Sample:
<ListModelOfAvailableDoctorsHoursModelaKbTw8r2 xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GlobalPortal.Mobile.Api.Models"> <CurrentPage>3</CurrentPage> <FirstRowOnPage>5</FirstRowOnPage> <ItemsPerPage>2</ItemsPerPage> <LastRowOnPage>6</LastRowOnPage> <Rows xmlns:d2p1="http://schemas.datacontract.org/2004/07/GlobalPortal.Mobile.Api.Models.AppointmentRequests"> <d2p1:AvailableDoctorsHoursModel> <d2p1:DoctorFullName>sample string 2</d2p1:DoctorFullName> <d2p1:DoctorId>1e014385-4a5f-4224-b615-a33c2365d64f</d2p1:DoctorId> <d2p1:Hour>3</d2p1:Hour> <d2p1:Minutes>4</d2p1:Minutes> </d2p1:AvailableDoctorsHoursModel> <d2p1:AvailableDoctorsHoursModel> <d2p1:DoctorFullName>sample string 2</d2p1:DoctorFullName> <d2p1:DoctorId>1e014385-4a5f-4224-b615-a33c2365d64f</d2p1:DoctorId> <d2p1:Hour>3</d2p1:Hour> <d2p1:Minutes>4</d2p1:Minutes> </d2p1:AvailableDoctorsHoursModel> </Rows> <TotalItems>1</TotalItems> <TotalPages>4</TotalPages> </ListModelOfAvailableDoctorsHoursModelaKbTw8r2>