POST api/Partner/IsDateAvailableForService
Provides a answer to the question, is there a service slot available for this type of service on the specified date
Request Information
URI Parameters
None.
Body Parameters
PartnerCheckServiceAvailabilityModel| Name | Description | Type | Additional information |
|---|---|---|---|
| ID |
PartnerID |
integer |
None. |
| ServiceTypeID | integer |
None. |
|
| RequestedDate | date |
None. |
Request Formats
application/json, text/json
Sample:
{
"ID": 1,
"ServiceTypeID": 2,
"RequestedDate": "2026-03-21T11:22:06.9569256+00:00"
}
application/xml, text/xml
Sample:
<PartnerCheckServiceAvailabilityModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Hub.Server.Models.DTO"> <ID>1</ID> <RequestedDate>2026-03-21T11:22:06.9569256+00:00</RequestedDate> <ServiceTypeID>2</ServiceTypeID> </PartnerCheckServiceAvailabilityModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
booleanResponse Formats
application/json, text/json
Sample:
true
application/xml, text/xml
Sample:
<boolean xmlns="http://schemas.microsoft.com/2003/10/Serialization/">true</boolean>