POST v1/Limo/LimoAutoSearch?location={location}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| location | string |
Required |
Body Parameters
None.
Response Information
Resource Description
LimoSuggestion| Name | Description | Type | Additional information |
|---|---|---|---|
| suggestions | Collection of Suggestion |
None. |
|
| IsSuccess | boolean |
None. |
|
| Message | string |
None. |
|
| guid | string |
None. |
|
| PNR | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"suggestions": [
{
"id": "sample string 1",
"description": "sample string 2",
"type": 3
},
{
"id": "sample string 1",
"description": "sample string 2",
"type": 3
}
],
"IsSuccess": true,
"Message": "sample string 2",
"guid": "sample string 3",
"PNR": "sample string 4"
}
application/xml, text/xml
Sample:
<LimoSuggestion 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 2</Message>
<PNR xmlns="http://schemas.datacontract.org/2004/07/GT.AzrTravelApi.Model">sample string 4</PNR>
<guid xmlns="http://schemas.datacontract.org/2004/07/GT.AzrTravelApi.Model">sample string 3</guid>
<suggestions>
<Suggestion>
<description>sample string 2</description>
<id>sample string 1</id>
<type>3</type>
</Suggestion>
<Suggestion>
<description>sample string 2</description>
<id>sample string 1</id>
<type>3</type>
</Suggestion>
</suggestions>
</LimoSuggestion>