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
PartnerCheckServiceAvailabilityModelName | 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": "2025-09-05T16:02:08.2235186+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>2025-09-05T16:02:08.2235186+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>