POST api/user/bookings/{bookingId}/vehicle-change-check
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| bookingId | globally unique identifier |
Required |
Body Parameters
UserBookingVehicleChangeCheckRequestDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| VehicleBookingId | string |
None. |
|
| VehicleTypeId | integer |
None. |
|
| RegistrationNumber | string |
None. |
|
| Make | string |
None. |
|
| Model | string |
None. |
|
| Colour | string |
None. |
|
| DriverName | string |
None. |
|
| DisabledParking | boolean |
None. |
|
| DisabledBadgeNumber | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"vehicleBookingId": "sample string 1",
"vehicleTypeId": 1,
"registrationNumber": "sample string 2",
"make": "sample string 3",
"model": "sample string 4",
"colour": "sample string 5",
"driverName": "sample string 6",
"disabledParking": true,
"disabledBadgeNumber": "sample string 7"
}
application/xml, text/xml
Sample:
<UserBookingVehicleChangeCheckRequestDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CruiseParking.Website.API.Models"> <Colour>sample string 5</Colour> <DisabledBadgeNumber>sample string 7</DisabledBadgeNumber> <DisabledParking>true</DisabledParking> <DriverName>sample string 6</DriverName> <Make>sample string 3</Make> <Model>sample string 4</Model> <RegistrationNumber>sample string 2</RegistrationNumber> <VehicleBookingId>sample string 1</VehicleBookingId> <VehicleTypeId>1</VehicleTypeId> </UserBookingVehicleChangeCheckRequestDTO>
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.