POST api/user/bookings/{bookingId}/services-check
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| bookingId | globally unique identifier |
Required |
Body Parameters
UserBookingServicesCheckRequestDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| Services | Collection of UserBookingServicePurchaseLineRequestDTO |
None. |
Request Formats
application/json, text/json
Sample:
{
"services": [
{
"orderVehicleId": 1,
"serviceId": 2,
"customerNotes": "sample string 3"
},
{
"orderVehicleId": 1,
"serviceId": 2,
"customerNotes": "sample string 3"
}
]
}
application/xml, text/xml
Sample:
<UserBookingServicesCheckRequestDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CruiseParking.Website.API.Models">
<Services>
<UserBookingServicePurchaseLineRequestDTO>
<CustomerNotes>sample string 3</CustomerNotes>
<OrderVehicleId>1</OrderVehicleId>
<ServiceId>2</ServiceId>
</UserBookingServicePurchaseLineRequestDTO>
<UserBookingServicePurchaseLineRequestDTO>
<CustomerNotes>sample string 3</CustomerNotes>
<OrderVehicleId>1</OrderVehicleId>
<ServiceId>2</ServiceId>
</UserBookingServicePurchaseLineRequestDTO>
</Services>
</UserBookingServicesCheckRequestDTO>
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.