POST v1/Limo/PriceBreakDown
Request Information
URI Parameters
None.
Body Parameters
PriceBreakdownRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| carClassCode | string |
None. |
|
| token | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"carClassCode": "sample string 1",
"token": "sample string 2"
}
application/xml, text/xml
Sample:
<PriceBreakdownRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GT.AzrTravelApi.Model.Limo"> <carClassCode>sample string 1</carClassCode> <token>sample string 2</token> </PriceBreakdownRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
PriceDetailsResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| price | decimal number |
None. |
|
| breakdown | Collection of Breakdown |
None. |
|
| IsSuccess | boolean |
None. |
|
| Message | string |
None. |
|
| guid | string |
None. |
|
| PNR | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"price": 1.1,
"breakdown": [
{
"name": "sample string 1",
"value": 2.1,
"isGrand": true,
"isMoney": true
},
{
"name": "sample string 1",
"value": 2.1,
"isGrand": true,
"isMoney": true
}
],
"IsSuccess": true,
"Message": "sample string 3",
"guid": "sample string 4",
"PNR": "sample string 5"
}
application/xml, text/xml
Sample:
<PriceDetailsResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GT.AzrTravelApi.Model.Limo">
<IsSuccess xmlns="http://schemas.datacontract.org/2004/07/GT.AzrTravelApi.Model">true</IsSuccess>
<Message xmlns="http://schemas.datacontract.org/2004/07/GT.AzrTravelApi.Model">sample string 3</Message>
<PNR xmlns="http://schemas.datacontract.org/2004/07/GT.AzrTravelApi.Model">sample string 5</PNR>
<guid xmlns="http://schemas.datacontract.org/2004/07/GT.AzrTravelApi.Model">sample string 4</guid>
<breakdown>
<Breakdown>
<isGrand>true</isGrand>
<isMoney>true</isMoney>
<name>sample string 1</name>
<value>2.1</value>
</Breakdown>
<Breakdown>
<isGrand>true</isGrand>
<isMoney>true</isMoney>
<name>sample string 1</name>
<value>2.1</value>
</Breakdown>
</breakdown>
<price>1.1</price>
</PriceDetailsResponse>