1. Destination Search
1. The arrival and departure times are NOT the times your client wishes to be picked up, they are the FLIGHT departure or arrival time. The actual pick up time will change according to the flight schedule 2. in case you are searching for a transfer between terminals, or between a terminal and a hotel, you can use "entityID" instead of the longitude and latitude Asynchronous Response: <response success="1" session="dv.Uw8IU6CsA"> <search status="working"> <server>http://mishor.example.com/</server> </search> </response> The Asynchronous response consists of the following elements:
2. Poll Request Poll Request <request version="4.0"> <auth> <username>example</username> <password>example</password> <agent><![CDATA[example]]></agent> <language>en</language> <clientIp>1.2.3.4</clientIp> <clientUserAgent>userAgent string</clientUserAgent> <customfields></customfields> </auth> <transfers-poll session="dv.Uw8IU6CsA" last="0"></transfers-poll> </request>
Poll Response <response success="1" session="dv.Uw8IU6CsA"> <job status="working"></job> <results last="1" count="12"> <result token="dv.1234" on-request="0" type="arrival/return"> <price amount="148.22" currency="EUR" final="1" commissionable="1" billable="1"></price> <price-details></price-details> <vehicleType><![CDATA[Private Luxury Transfer (1 -3 people)]]></vehicleType> <transferType><![CDATA[Private Luxury Transfer (1 -3 people)]]></transferType> <transferDescriptions></transferDescriptions> <origin type="terminal" id="2165"> <locationName><![CDATA[London Heathrow Airport (LHR)]]></locationName> <locationInfo> <name><![CDATA[Heathrow]]></name> <city><![CDATA[London]]></city> <state><![CDATA[England]]></state> <country><![CDATA[United Kingdom]]></country> <latitude>51.477500</latitude> <longitude>-0.461388</longitude> </locationInfo> </origin> <destination type="coordinates" id="0"> <locationName><![CDATA[London W1 - Oxford Street, Piccadilly, Mayfair]]></locationName> <locationInfo> <latitude>51.5177349</latitude> <longitude>-0.15590780000002</longitude> <address><![CDATA[21 Baker St, Marylebone, London W1U 8EQ, UK]]></address> <city><![CDATA[NONE]]></city> <country><![CDATA[]]></country> <description><![CDATA[21 Baker St]]></description> </locationInfo> </destination> <images> <image></image> </images> <cancellation> <frame endTime="2016-10-23 00:00:00" timezone="UTC" type="fully-refundable"></frame> <frame endTime="2016-10-29 00:00:00" timezone="UTC" type="non-refundable"></frame> </cancellation> </result> <result token="dv.2345" n-request="0" type="arrival"> <price amount="100" currency="GBP" final="1" commissionable="1" billable="1"></price> <price-details></price-details> <vehicleType><![CDATA[High Class Sedan]]></vehicleType> <transferType><![CDATA[Private hire with driver]]></transferType> <transferDescriptions> <transferDescription><![CDATA[Exclusive ride for you]]></transferDescription> <transferDescription><![CDATA[Door to door service]]></transferDescription> <transferDescription><![CDATA[Available 24/7]]></transferDescription> <transferDescription><![CDATA[Meet & Greet service]]></transferDescription> <transferDescription><![CDATA[1 piece of baggage allowed per person]]></transferDescription> <transferDescription><![CDATA[1 item of hand baggage allowed per person]]></transferDescription> </transferDescriptions> <origin type="terminal" id="2165"> <locationName><![CDATA[London, Heathrow Airport]]></locationName> <locationInfo> <name><![CDATA[Heathrow]]></name> <city><![CDATA[London]]></city> <state><![CDATA[England]]></state> <country><![CDATA[United Kingdom]]></country> <latitude>51.477500</latitude> <longitude>-0.461388</longitude> </locationInfo> </origin> <destination type="coordinates" id="0"> <locationName><![CDATA[Central London]]></locationName> <locationInfo> <latitude>51.5177349</latitude> <longitude>-0.15590780000002</longitude> <address><![CDATA[21 Baker St, Marylebone, London W1U 8EQ, UK]]></address> <city><![CDATA[NONE]]></city> <country><![CDATA[]]></country> <description><![CDATA[21 Baker St]]></description> </locationInfo> </destination> <images> <image>http://example.com/medium/prvt-lxr-hcb.png</image> </images> </result> <result token="dv.3456" on-request="0" type="return"> <price amount="100" currency="GBP" final="1" commissionable="1" billable="1"></price> <price-details></price-details> <vehicleType><![CDATA[High Class Sedan]]></vehicleType> <transferType><![CDATA[Private hire with driver]]></transferType> <transferDescriptions> <transferDescription><![CDATA[Exclusive ride for you]]></transferDescription> <transferDescription><![CDATA[Door to door service]]></transferDescription> <transferDescription><![CDATA[Available 24/7]]></transferDescription> <transferDescription><![CDATA[Meet & Greet service]]></transferDescription> <transferDescription><![CDATA[1 piece of baggage allowed per person]]></transferDescription> <transferDescription><![CDATA[1 item of hand baggage allowed per person]]></transferDescription> </transferDescriptions> <origin type="coordinates"> <locationName><![CDATA[Central London]]></locationName> <locationInfo> <latitude>51.5177349</latitude> <longitude>-0.15590780000002</longitude> <address><![CDATA[21 Baker St, Marylebone, London W1U 8EQ, UK]]></address> <city><![CDATA[NONE]]></city> <country><![CDATA[]]></country> <description><![CDATA[21 Baker St]]></description> </locationInfo> </origin> <destination type="terminal" id="0"> <locationName><![CDATA[London, Heathrow Airport]]></locationName> <locationInfo> <name><![CDATA[Heathrow]]></name> <city><![CDATA[London]]></city> <state><![CDATA[England]]></state> <country><![CDATA[United Kingdom]]></country> <latitude>51.477500</latitude> <longitude>-0.461388</longitude> </locationInfo> </destination> <images> <image>http://example.com/medium/prvt-lxr-hcb.png</image> </images> </result> </results></response>
Notes 1. the type of result can vary between "arrival", "return", and "arrival/return". if you searched for a round-trip, if will need to choose either 1 arrival and 1 return, or a single arrival/return result to book. |