POST api/ResourceTypes/Reservations/Validate
Request Information
URI Parameters
None.
Body Parameters
ResourceReservationValidationListDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| Reservations | Collection of ResourceReservationValidationDTO |
None. |
Request Formats
application/json, text/json
Sample:
{
"Reservations": [
{
"ExistingId": 1,
"AllDay": true,
"Start": "2025-12-05T10:18:01.9319046+00:00",
"End": "2025-12-05T10:18:01.9319046+00:00",
"ResourceId": 5
},
{
"ExistingId": 1,
"AllDay": true,
"Start": "2025-12-05T10:18:01.9319046+00:00",
"End": "2025-12-05T10:18:01.9319046+00:00",
"ResourceId": 5
}
]
}
application/xml, text/xml
Sample:
<ResourceReservationValidationListDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Bluedock.Booking.Rest.Models.ResourceTypes">
<Reservations>
<ResourceReservationValidationDTO>
<AllDay>true</AllDay>
<End>2025-12-05T10:18:01.9319046+00:00</End>
<ExistingId>1</ExistingId>
<ResourceId>5</ResourceId>
<Start>2025-12-05T10:18:01.9319046+00:00</Start>
</ResourceReservationValidationDTO>
<ResourceReservationValidationDTO>
<AllDay>true</AllDay>
<End>2025-12-05T10:18:01.9319046+00:00</End>
<ExistingId>1</ExistingId>
<ResourceId>5</ResourceId>
<Start>2025-12-05T10:18:01.9319046+00:00</Start>
</ResourceReservationValidationDTO>
</Reservations>
</ResourceReservationValidationListDTO>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.