POST v1/Limo/CancelBooking
Request Information
URI Parameters
None.
Body Parameters
LimoCancelRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| credentials | Credentials |
None. |
|
| confirmation | string |
None. |
|
| isCancelRequest | boolean |
None. |
|
| passengerLastName | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"credentials": {
"id": "sample string 1",
"isCustomer": true,
"passwordHash": "sample string 3"
},
"confirmation": "sample string 1",
"isCancelRequest": true,
"passengerLastName": "sample string 3"
}
application/xml, text/xml
Sample:
<LimoCancelRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GT.AzrTravelApi.Model.Limo">
<confirmation>sample string 1</confirmation>
<credentials>
<id>sample string 1</id>
<isCustomer>true</isCustomer>
<passwordHash>sample string 3</passwordHash>
</credentials>
<isCancelRequest>true</isCancelRequest>
<passengerLastName>sample string 3</passengerLastName>
</LimoCancelRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
Response| Name | Description | Type | Additional information |
|---|---|---|---|
| IsSuccess | boolean |
None. |
|
| Message | string |
None. |
|
| guid | string |
None. |
|
| PNR | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"IsSuccess": true,
"Message": "sample string 2",
"guid": "sample string 3",
"PNR": "sample string 4"
}
application/xml, text/xml
Sample:
<Response xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GT.AzrTravelApi.Model"> <IsSuccess>true</IsSuccess> <Message>sample string 2</Message> <PNR>sample string 4</PNR> <guid>sample string 3</guid> </Response>