POST LimoReservation/SearchAvailability

Request Information

URI Parameters

None.

Body Parameters

SearchAvailabilityRequest
NameDescriptionTypeAdditional information
ServiceTypeCode

string

None.

RequestDT

date

None.

RequestEndDT

date

None.

VehicleCode

string

None.

Lang

string

None.

DepartuerLocationCode

string

None.

ArrivalLocationCode

string

None.

Address_Location

string

None.

IsRoundTrip

boolean

None.

UnitCount

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "ServiceTypeCode": "sample string 1",
  "RequestDT": "2025-05-06T14:58:36.9795081+03:00",
  "RequestEndDT": "2025-05-06T14:58:36.9795081+03:00",
  "VehicleCode": "sample string 4",
  "Lang": "sample string 5",
  "DepartuerLocationCode": "sample string 6",
  "ArrivalLocationCode": "sample string 7",
  "Address_Location": "sample string 8",
  "IsRoundTrip": true,
  "UnitCount": 10
}

application/xml, text/xml

Sample:
<SearchAvailabilityRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SAPTCO.Mobile.Forms.Models">
  <Address_Location>sample string 8</Address_Location>
  <ArrivalLocationCode>sample string 7</ArrivalLocationCode>
  <DepartuerLocationCode>sample string 6</DepartuerLocationCode>
  <IsRoundTrip>true</IsRoundTrip>
  <Lang>sample string 5</Lang>
  <RequestDT>2025-05-06T14:58:36.9795081+03:00</RequestDT>
  <RequestEndDT>2025-05-06T14:58:36.9795081+03:00</RequestEndDT>
  <ServiceTypeCode>sample string 1</ServiceTypeCode>
  <UnitCount>10</UnitCount>
  <VehicleCode>sample string 4</VehicleCode>
</SearchAvailabilityRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

Collection of LimoSearchAvailabilityResultResponse
NameDescriptionTypeAdditional information
Price

decimal number

None.

Is_Available

boolean

None.

VehicleCode

string

None.

ExtraUnitPrice

decimal number

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Price": 1.1,
    "Is_Available": true,
    "VehicleCode": "sample string 2",
    "ExtraUnitPrice": 1.1
  }
]

application/xml, text/xml

Sample:
<ArrayOfLimoSearchAvailabilityResultResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Infrastructure.Models">
  <LimoSearchAvailabilityResultResponse>
    <ExtraUnitPrice>1.1</ExtraUnitPrice>
    <Is_Available>true</Is_Available>
    <Price>1.1</Price>
    <VehicleCode>sample string 2</VehicleCode>
  </LimoSearchAvailabilityResultResponse>
</ArrayOfLimoSearchAvailabilityResultResponse>