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 BookingTimeSlot| Name | Description | Type | Additional information |
|---|---|---|---|
| AvailableTime | date |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"AvailableTime": "2025-12-14T08:55:27.2867894+00:00"
},
{
"AvailableTime": "2025-12-14T08:55:27.2867894+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-12-14T08:55:27.2867894+00:00</AvailableTime>
</BookingTimeSlot>
<BookingTimeSlot>
<AvailableTime>2025-12-14T08:55:27.2867894+00:00</AvailableTime>
</BookingTimeSlot>
</ArrayOfBookingTimeSlot>