GET api/Bookings/GetProviderAvailability?accessProviderID={accessProviderID}&selectedDate={selectedDate}
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
accessProviderID | globally unique identifier |
Required |
|
selectedDate | date |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of BookingTimeSlotName | Description | Type | Additional information |
---|---|---|---|
AvailableTime | date |
None. |
Response Formats
application/json, text/json
Sample:
[ { "AvailableTime": "2025-06-08T02:25:28.4178807+00:00" }, { "AvailableTime": "2025-06-08T02:25:28.4178807+00:00" } ]
application/xml, text/xml
Sample:
<ArrayOfBookingTimeSlot xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AbsoluteHealth.API.Models"> <BookingTimeSlot> <AvailableTime>2025-06-08T02:25:28.4178807+00:00</AvailableTime> </BookingTimeSlot> <BookingTimeSlot> <AvailableTime>2025-06-08T02:25:28.4178807+00:00</AvailableTime> </BookingTimeSlot> </ArrayOfBookingTimeSlot>