Transfers API
In order to search, validate and book a Transfer order via API, please follow this booking flow :
Request | Explanation |
---|---|
Search Transfers | Retrieve available offers from our Transfers suppliers. |
Price Validation | Retrieve all crucial information regarding the cancellation policy and other details. |
Payment Preferences | Retrieve the relevant payment methods. |
Book Transfer | Book the Transfer. |
Transfers Search
The Transfers Search API call is used for sending a Transfers service search request and for retrieving available offers from our Transfers suppliers.
Transfers Search Request Fields
Field | Description | Mandatory |
---|---|---|
Credentials | Credentials | |
UserName | Username | Yes |
Password | User's password | Yes |
ClientIP | ||
DesiredResultCurrency | Prices will be offered in the requested currency | Yes |
Residency | Residency of the customer | |
TimeoutSeconds | Timeout for retrieving the supplier response | |
Adults | ||
Card | ||
ContractIds | ||
KidsAges | ||
SelectedPaymentMethod | Additional service fee set by the user to charge the client | |
SupplierIds | Supplier ID by which you will request to search for | |
TransferRequestInfo | Represent a single transfer leg. In case you will request more than one transfer leg, each leg MUST have a DropOffLocation element and a PickupLocation element. | |
Date | Date of the transfer | Yes |
DropOffLocation | Pass here the drop-off location details for a single transfer leg | |
AirportCode | The drop-off airport IATA code. Mandatory if no other DropOffLocation fields are passed. | Yes |
HotelId | The drop-off Travolutionary HotelID. Mandatory if no other DropOffLocation fields are passed. | Yes |
LocationId | Drop-off LocationId. Mandatory if no other DropOffLocation fields are passed. | Yes |
LocationType | Pass the relevant type for your request | Yes |
PickupLocation | ||
AirportCode | The pick-up airport IATA code. Mandatory if no other PickupLocation fields are passed. | Yes |
HotelId | The pick-up HotelId. Mandatory if no other PickupLocation fields are passed. | Yes |
LocationId | The pick-up LocationId. Mandatory if no other PickupLocation fields are passed. | Yes |
LocationType | Pass the relevant type for your request | Yes |
Time | Requested time of the transfer | Yes |
RequestType | Search | Yes |
TypeOfService | Transfers | Yes |
Transfers Search Response Fields
Field | Description |
---|---|
Errors | Errors retrieved from our API service |
SessionID | SessionID of the Transfers booking session |
CancellationPolicies | |
Id | Transfer ID |
Price | |
Currency | The offered rate's currency, determined by the user on search |
FinalPrice | Final price after markup and commission |
FinalPriceInSupplierCurrency | The final price, including markups and commission, in the supplier's currency |
OriginalPrice | Price before markup and commission |
OriginalPriceInSupplierCurrency | Price before markup and commission in the supplier's currency |
SupplierCurrency | The currency retrieved from the supplier |
SupplierId | Internal supplier ID |
SupplierName | The supplier name |
Transfer | |
Date | Pickup and drop-off date |
DropoffLocation | Location for drop-off |
EstimatedDuration | Duration of the transfer |
Facilities | Facilities of the transfer |
PickUpRemarks | Any remarks from the supplier regarding the drop-off |
PickupLocation | Location for pick-up |
Remarks | Any remarks from the supplier regarding the pick-up |
ServiceClass | Class of the transfer service (for example "Shared - Shuttle") |
ServiceType | Type of the service (for example "Express") |
Time | |
VehicleType | Type of the vehicle |
TransferRequestInfo | |
Date | |
DropOffLocation | |
AirportCode | The requested airport, if provided |
HotelId | The requested HotelID, if provided |
LocationId | The requested LocationId, if provided |
LocationType | Type of the location |
PickupLocation | |
AirportCode | The requested airport, if provided |
HotelId | The requested HotelID, if provided |
LocationId | The requested LocationId, if provided |
LocationType | Type of the location |
Time | Requested time of the transfer |
Transfers Search Request
<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
<s:Body>
<ServiceRequest xmlns="http://tempuri.org/">
<rqst xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
<Credentials xmlns="">
<Password>****</Password>
<UserName>****</UserName>
</Credentials>
<Request xmlns="" xmlns:a="http://schemas.datacontract.org/2004/07/IsuBe.Public.Enteties.Transfers" i:type="a:TransfersSearchRequest">
<ClientIP i:nil="true"/>
<DesiredResultCurrency>USD</DesiredResultCurrency>
<Residency>US</Residency>
<TimeoutSeconds>0</TimeoutSeconds>
<a:Adults>2</a:Adults>
<a:Card xmlns:b="http://schemas.datacontract.org/2004/07/IsuBe.Public.Enteties.Payment" i:nil="true"/>
<a:ContractIds xmlns:b="http://schemas.microsoft.com/2003/10/Serialization/Arrays"/>
<a:KidsAges xmlns:b="http://schemas.microsoft.com/2003/10/Serialization/Arrays"/>
<a:SelectedPaymentMethod i:nil="true"/>
<a:ServiceFee i:nil="true"/>
<a:SupplierIds xmlns:b="http://schemas.microsoft.com/2003/10/Serialization/Arrays"/>
<a:TransferInfo>
<a:TransferRequestInfo>
<a:Date>2017-09-27T00:00:00</a:Date>
<a:DropOffLocation>
<a:AirportCode i:nil="true"/>
<a:HotelId>4158590</a:HotelId>
<a:LocationId>0</a:LocationId>
<a:LocationType>Hotel</a:LocationType>
</a:DropOffLocation>
<a:PickupLocation>
<a:AirportCode>JFK</a:AirportCode>
<a:HotelId>0</a:HotelId>
<a:LocationId>0</a:LocationId>
<a:LocationType>Airport</a:LocationType>
</a:PickupLocation>
<a:Time>PT0S</a:Time>
</a:TransferRequestInfo>
<a:TransferRequestInfo>
<a:Date>2017-09-19T13:53:00</a:Date>
<a:DropOffLocation>
<a:AirportCode>JFK</a:AirportCode>
<a:HotelId>0</a:HotelId>
<a:LocationId>0</a:LocationId>
<a:LocationType>Airport</a:LocationType>
</a:DropOffLocation>
<a:PickupLocation>
<a:AirportCode i:nil="true"/>
<a:HotelId>4158590</a:HotelId>
<a:LocationId>0</a:LocationId>
<a:LocationType>Hotel</a:LocationType>
</a:PickupLocation>
<a:Time>PT0S</a:Time>
</a:TransferRequestInfo>
</a:TransferInfo>
</Request>
<RequestType xmlns="">Search</RequestType>
<TypeOfService xmlns="">Transfers</TypeOfService>
</rqst>
</ServiceRequest>
</s:Body>
</s:Envelope>
Transfers Search Response
<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
<s:Body>
<ServiceRequestResponse xmlns="http://tempuri.org/">
<ServiceRequestResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
<Errors xmlns=""/>
<SessionID xmlns="">/22/84812/D20170919T105646/3c05e67de0de463981cb2aadd6a36321</SessionID>
<TransfersSearchResponse xmlns="">
<Result xmlns:a="http://schemas.datacontract.org/2004/07/IsuBe.Public.Enteties.Transfers">
<a:TransferPackageGrouping>
<a:Packages>
<a:TransferPackage>
<a:CancellationPolicies i:nil="true"/>
<a:Id>6640007a-a6e6-4243-b94d-225722831dd8</a:Id>
<a:Price>
<Currency>USD</Currency>
<FinalPrice>92.38</FinalPrice>
<FinalPriceInSupplierCurrency>92.38</FinalPriceInSupplierCurrency>
<OriginalPrice>92.38</OriginalPrice>
<OriginalPriceInSupplierCurrency>92.38</OriginalPriceInSupplierCurrency>
<SupplierCurrency>USD</SupplierCurrency>
</a:Price>
<a:SupplierId>13</a:SupplierId>
<a:SupplierName>HBS</a:SupplierName>
<a:Transfers>
<a:Transfer>
<a:Date>2017-09-27T00:00:00</a:Date>
<a:DropoffLocation xmlns:b="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<b:string>Hilton NY JFK Airport</b:string>
</a:DropoffLocation>
<a:EstimatedDuration>0</a:EstimatedDuration>
<a:Facilities xmlns:b="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<b:string>Exclusive ride for you</b:string>
<b:string>Door to door service</b:string>
<b:string>Available 24/7</b:string>
<b:string>Meet & Greet service</b:string>
<b:string>1 item of hand baggage allowed per person</b:string>
<b:string>1 piece of baggage allowed per person ( max.dimensions 158cm) length+width+height=158cm</b:string>
</a:Facilities>
<a:PickUpRemarks>Domestic Flights: Before you collect your luggage a staff member will be waiting for you at the baggage claim area with a sign with your name on it. International Flights: Once you have cleared customs a staff member will be waiting for you outside customs area with a sign with your name on it. If you are unable to locate the driver, please call 1-718-442-4636or 1-800-542-1584 . Languages spoken at the call centre: English.</a:PickUpRemarks>
<a:PickupLocation xmlns:b="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<b:string>New York, John F Kennedy Int. Airport</b:string>
</a:PickupLocation>
<a:Remarks xmlns:b="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<b:string>EXCESS LUGGAGE - If you arrive at the destination with an excess of luggage, you will have to pay an additional charge for the extra undeclared weight. </b:string>
<b:string>CAN'T FIND DRIVER - In the event of being unable to locate the driver, please call the emergency number indicated in this voucher.</b:string>
<b:string>VOUCHER - Remember to bring this voucher and valid photo ID with you</b:string>
<b:string>BABY SEATS - If you are travelling with children it is required to use a child safety seat. Please note that it´s the parent or guardian reponsability to bring one, in the case of not complying with this requirement the service may not be provided.</b:string>
<b:string>Domestic: Total Driver Waiting Time 60 min. - Domestic Arrivals: For this service, the driver will wait a total of 60 min. (instead of the standard driver waiting time mentioned)</b:string>
<b:string>International: Total Driver waiting time 120 min. - International Arrivals: For this service, the driver will wait a total of 120 min. (instead of the standard driver waiting time mentioned)</b:string>
<b:string>Exclusive ride for you - </b:string>
<b:string>Door to door service - </b:string>
<b:string>Available 24/7 - </b:string>
<b:string>Meet & Greet service - </b:string>
<b:string>1 item of hand baggage allowed per person - </b:string>
<b:string>1 piece of baggage allowed per person ( max.dimensions 158cm) length+width+height=158cm - </b:string>
</a:Remarks>
<a:ServiceClass>Private</a:ServiceClass>
<a:ServiceType>Luxury</a:ServiceType>
<a:Time>PT0S</a:Time>
<a:VehicleType>Sedan</a:VehicleType>
</a:Transfer>
</a:Transfers>
</a:TransferPackage>
<a:TransferPackage>
<a:CancellationPolicies i:nil="true"/>
<a:Id>4372b89a-3744-45f5-afa0-44c3a21293b2</a:Id>
<a:Price>
<Currency>USD</Currency>
<FinalPrice>35.5</FinalPrice>
<FinalPriceInSupplierCurrency>35.5</FinalPriceInSupplierCurrency>
<OriginalPrice>35.5</OriginalPrice>
<OriginalPriceInSupplierCurrency>35.5</OriginalPriceInSupplierCurrency>
<SupplierCurrency>USD</SupplierCurrency>
</a:Price>
<a:SupplierId>13</a:SupplierId>
<a:SupplierName>HBS</a:SupplierName>
<a:Transfers>
<a:Transfer>
<a:Date>2017-09-27T00:00:00</a:Date>
<a:DropoffLocation xmlns:b="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<b:string>Hilton NY JFK Airport</b:string>
</a:DropoffLocation>
<a:EstimatedDuration>0</a:EstimatedDuration>
<a:Facilities xmlns:b="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<b:string>Maximum</b:string>
<b:string>1 item of hand baggage allowed per person</b:string>
<b:string>1 piece of baggage allowed per person ( max.dimensions 158cm) length+width+height=158cm</b:string>
</a:Facilities>
<a:PickUpRemarks>Supplier: GO AIRLINK Once you have collected your luggage, proceed to the Ground Transportation Desk in your arriving terminal and present the voucher to the Agent who will arrange the transfer. If the Agent is not at the desk, go to the transportation phone bank and call GO Airlink (dial 18). When boarding please make sure that the vehicle is a GO Airlink van.</a:PickUpRemarks>
<a:PickupLocation xmlns:b="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<b:string>New York, John F Kennedy Int. Airport</b:string>
</a:PickupLocation>
<a:Remarks xmlns:b="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<b:string>VOUCHER - Remember to bring this voucher and valid photo ID with you</b:string>
<b:string>EXCESS LUGGAGE - If you arrive at the destination with an excess of luggage, you will have to pay an additional charge for the extra undeclared weight. </b:string>
<b:string>CAN'T FIND MEETING POINT - In the event of being unable to locate the meeting point, please call the emergency number indicated in this voucher.</b:string>
<b:string>BABY SEATS - If you are travelling with children it is required to use a child safety seat. Please note that it´s the parent or guardian reponsability to bring one, in the case of not complying with this requirement the service may not be provided.</b:string>
<b:string>Domestic: Total Driver Waiting Time 60 min. - Domestic Arrivals: For this service, the driver will wait a total of 60 min. (instead of the standard driver waiting time mentioned)</b:string>
<b:string>International: Total Driver waiting time 120 min. - International Arrivals: For this service, the driver will wait a total of 120 min. (instead of the standard driver waiting time mentioned)</b:string>
<b:string>CAPACITY - Maximum capacity in your transportation vehicle is 10. For parties more than 10 please note that service will provided in separate vehicles.</b:string>
<b:string>Maximum - </b:string>
<b:string>1 item of hand baggage allowed per person - </b:string>
<b:string>1 piece of baggage allowed per person ( max.dimensions 158cm) length+width+height=158cm - </b:string>
</a:Remarks>
<a:ServiceClass>Shared - Shuttle</a:ServiceClass>
<a:ServiceType>Express</a:ServiceType>
<a:Time>PT0S</a:Time>
<a:VehicleType>Minibus</a:VehicleType>
</a:Transfer>
</a:Transfers>
</a:TransferPackage>
<a:TransferPackage>
<a:CancellationPolicies i:nil="true"/>
<a:Id>ae7718e5-ae9d-483d-991e-3dbefe0affad</a:Id>
<a:Price>
<Currency>USD</Currency>
<FinalPrice>97.24</FinalPrice>
<FinalPriceInSupplierCurrency>97.24</FinalPriceInSupplierCurrency>
<OriginalPrice>97.24</OriginalPrice>
<OriginalPriceInSupplierCurrency>97.24</OriginalPriceInSupplierCurrency>
<SupplierCurrency>USD</SupplierCurrency>
</a:Price>
<a:SupplierId>13</a:SupplierId>
<a:SupplierName>HBS</a:SupplierName>
<a:Transfers>
<a:Transfer>
<a:Date>2017-09-27T00:00:00</a:Date>
<a:DropoffLocation xmlns:b="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<b:string>Hilton NY JFK Airport</b:string>
</a:DropoffLocation>
<a:EstimatedDuration>0</a:EstimatedDuration>
<a:Facilities xmlns:b="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<b:string>Exclusive ride for you</b:string>
<b:string>Door to door service</b:string>
<b:string>Available 24/7</b:string>
<b:string>Meet & Greet service</b:string>
<b:string>1 item of hand baggage allowed per person</b:string>
<b:string>1 piece of baggage allowed per person ( max.dimensions 158cm) length+width+height=158cm</b:string>
</a:Facilities>
<a:PickUpRemarks>Domestic Flights: Before you collect your luggage a staff member will be waiting for you at the baggage claim area with a sign with your name on it. International Flights: Once you have cleared customs a staff member will be waiting for you outside customs area with a sign with your name on it. If you are unable to locate the driver, please call 1-718-442-4636or 1-800-542-1584 . Languages spoken at the call centre: English.</a:PickUpRemarks>
<a:PickupLocation xmlns:b="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<b:string>New York, John F Kennedy Int. Airport</b:string>
</a:PickupLocation>
<a:Remarks xmlns:b="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<b:string>EXCESS LUGGAGE - If you arrive at the destination with an excess of luggage, you will have to pay an additional charge for the extra undeclared weight. </b:string>
<b:string>CAN'T FIND DRIVER - In the event of being unable to locate the driver, please call the emergency number indicated in this voucher.</b:string>
<b:string>VOUCHER - Remember to bring this voucher and valid photo ID with you</b:string>
<b:string>BABY SEATS - If you are travelling with children it is required to use a child safety seat. Please note that it´s the parent or guardian reponsability to bring one, in the case of not complying with this requirement the service may not be provided.</b:string>
<b:string>Domestic: Total Driver Waiting Time 60 min. - Domestic Arrivals: For this service, the driver will wait a total of 60 min. (instead of the standard driver waiting time mentioned)</b:string>
<b:string>International: Total Driver waiting time 120 min. - International Arrivals: For this service, the driver will wait a total of 120 min. (instead of the standard driver waiting time mentioned)</b:string>
<b:string>Exclusive ride for you - </b:string>
<b:string>Door to door service - </b:string>
<b:string>Available 24/7 - </b:string>
<b:string>Meet & Greet service - </b:string>
<b:string>1 item of hand baggage allowed per person - </b:string>
<b:string>1 piece of baggage allowed per person ( max.dimensions 158cm) length+width+height=158cm - </b:string>
</a:Remarks>
<a:ServiceClass>Private</a:ServiceClass>
<a:ServiceType>Luxury</a:ServiceType>
<a:Time>PT0S</a:Time>
<a:VehicleType>Sedan - Portuguese</a:VehicleType>
</a:Transfer>
</a:Transfers>
</a:TransferPackage>
<a:TransferPackage>
<a:CancellationPolicies i:nil="true"/>
<a:Id>e857543b-d8c5-46a6-b9d6-77269268477f</a:Id>
<a:Price>
<Currency>USD</Currency>
<FinalPrice>207.18</FinalPrice>
<FinalPriceInSupplierCurrency>207.18</FinalPriceInSupplierCurrency>
<OriginalPrice>207.18</OriginalPrice>
<OriginalPriceInSupplierCurrency>207.18</OriginalPriceInSupplierCurrency>
<SupplierCurrency>USD</SupplierCurrency>
</a:Price>
<a:SupplierId>13</a:SupplierId>
<a:SupplierName>HBS</a:SupplierName>
<a:Transfers>
<a:Transfer>
<a:Date>2017-09-27T00:00:00</a:Date>
<a:DropoffLocation xmlns:b="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<b:string>Hilton NY JFK Airport</b:string>
</a:DropoffLocation>
<a:EstimatedDuration>0</a:EstimatedDuration>
<a:Facilities xmlns:b="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<b:string>Exclusive ride for you</b:string>
<b:string>Door to door service</b:string>
<b:string>Available 24/7</b:string>
<b:string>Meet & Greet service</b:string>
<b:string>1 item of hand baggage allowed per person</b:string>
</a:Facilities>
<a:PickUpRemarks>Domestic Flights: Before you collect your luggage a staff member will be waiting for you at the baggage claim area with a sign with your name on it. International Flights: Once you have cleared customs a staff member will be waiting for you outside customs area with a sign with your name on it. If you are unable to locate the driver, please call 1-718-442-4636or 1-800-542-1584 . Languages spoken at the call centre: English.</a:PickUpRemarks>
<a:PickupLocation xmlns:b="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<b:string>New York, John F Kennedy Int. Airport</b:string>
</a:PickupLocation>
<a:Remarks xmlns:b="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<b:string>EXCESS LUGGAGE - If you arrive at the destination with an excess of luggage, you will have to pay an additional charge for the extra undeclared weight. </b:string>
<b:string>CAN'T FIND DRIVER - In the event of being unable to locate the driver, please call the emergency number indicated in this voucher.</b:string>
<b:string>VOUCHER - Remember to bring this voucher and valid photo ID with you</b:string>
<b:string>BABY SEATS - If you are travelling with children it is required to use a child safety seat. Please note that it´s the parent or guardian reponsability to bring one, in the case of not complying with this requirement the service may not be provided.</b:string>
<b:string>Domestic: Total Driver Waiting Time 60 min. - Domestic Arrivals: For this service, the driver will wait a total of 60 min. (instead of the standard driver waiting time mentioned)</b:string>
<b:string>International: Total Driver waiting time 120 min. - International Arrivals: For this service, the driver will wait a total of 120 min. (instead of the standard driver waiting time mentioned)</b:string>
<b:string>Exclusive ride for you - </b:string>
<b:string>Door to door service - </b:string>
<b:string>Available 24/7 - </b:string>
<b:string>Meet & Greet service - </b:string>
<b:string>1 item of hand baggage allowed per person - </b:string>
</a:Remarks>
<a:ServiceClass>Private</a:ServiceClass>
<a:ServiceType>Luxury</a:ServiceType>
<a:Time>PT0S</a:Time>
<a:VehicleType>Limousine - Portuguese</a:VehicleType>
</a:Transfer>
</a:Transfers>
</a:TransferPackage>
<a:TransferPackage>
<a:CancellationPolicies i:nil="true"/>
<a:Id>d55b076c-ee33-4fce-b44d-e5b38c34adf9</a:Id>
<a:Price>
<Currency>USD</Currency>
<FinalPrice>139.23</FinalPrice>
<FinalPriceInSupplierCurrency>139.23</FinalPriceInSupplierCurrency>
<OriginalPrice>139.23</OriginalPrice>
<OriginalPriceInSupplierCurrency>139.23</OriginalPriceInSupplierCurrency>
<SupplierCurrency>USD</SupplierCurrency>
</a:Price>
<a:SupplierId>13</a:SupplierId>
<a:SupplierName>HBS</a:SupplierName>
<a:Transfers>
<a:Transfer>
<a:Date>2017-09-27T00:00:00</a:Date>
<a:DropoffLocation xmlns:b="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<b:string>Hilton NY JFK Airport</b:string>
</a:DropoffLocation>
<a:EstimatedDuration>0</a:EstimatedDuration>
<a:Facilities xmlns:b="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<b:string>Exclusive ride for you</b:string>
<b:string>Door to door service</b:string>
<b:string>Available 24/7</b:string>
<b:string>Meet & Greet service</b:string>
<b:string>1 item of hand baggage allowed per person</b:string>
<b:string>1 piece of baggage allowed per person ( max.dimensions 158cm) length+width+height=158cm</b:string>
</a:Facilities>
<a:PickUpRemarks>Domestic Flights: Before you collect your luggage a staff member will be waiting for you at the baggage claim area with a sign with your name on it. International Flights: Once you have cleared customs a staff member will be waiting for you outside customs area with a sign with your name on it. If you are unable to locate the driver, please call 1-718-442-4636or 1-800-542-1584 . Languages spoken at the call centre: English.</a:PickUpRemarks>
<a:PickupLocation xmlns:b="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<b:string>New York, John F Kennedy Int. Airport</b:string>
</a:PickupLocation>
<a:Remarks xmlns:b="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<b:string>EXCESS LUGGAGE - If you arrive at the destination with an excess of luggage, you will have to pay an additional charge for the extra undeclared weight. </b:string>
<b:string>CAN'T FIND DRIVER - In the event of being unable to locate the driver, please call the emergency number indicated in this voucher.</b:string>
<b:string>VOUCHER - Remember to bring this voucher and valid photo ID with you</b:string>
<b:string>BABY SEATS - If you are travelling with children it is required to use a child safety seat. Please note that it´s the parent or guardian reponsability to bring one, in the case of not complying with this requirement the service may not be provided.</b:string>
<b:string>Domestic: Total Driver Waiting Time 60 min. - Domestic Arrivals: For this service, the driver will wait a total of 60 min. (instead of the standard driver waiting time mentioned)</b:string>
<b:string>International: Total Driver waiting time 120 min. - International Arrivals: For this service, the driver will wait a total of 120 min. (instead of the standard driver waiting time mentioned)</b:string>
<b:string>Exclusive ride for you - </b:string>
<b:string>Door to door service - </b:string>
<b:string>Available 24/7 - </b:string>
<b:string>Meet & Greet service - </b:string>
<b:string>1 item of hand baggage allowed per person - </b:string>
<b:string>1 piece of baggage allowed per person ( max.dimensions 158cm) length+width+height=158cm - </b:string>
</a:Remarks>
<a:ServiceClass>Private</a:ServiceClass>
<a:ServiceType>Luxury</a:ServiceType>
<a:Time>PT0S</a:Time>
<a:VehicleType>SUV - Portuguese</a:VehicleType>
</a:Transfer>
</a:Transfers>
</a:TransferPackage>
<a:TransferPackage>
<a:CancellationPolicies i:nil="true"/>
<a:Id>4282fcdf-6169-41eb-ade5-6e2a48c9c29f</a:Id>
<a:Price>
<Currency>USD</Currency>
<FinalPrice>207.18</FinalPrice>
<FinalPriceInSupplierCurrency>207.18</FinalPriceInSupplierCurrency>
<OriginalPrice>207.18</OriginalPrice>
<OriginalPriceInSupplierCurrency>207.18</OriginalPriceInSupplierCurrency>
<SupplierCurrency>USD</SupplierCurrency>
</a:Price>
<a:SupplierId>13</a:SupplierId>
<a:SupplierName>HBS</a:SupplierName>
<a:Transfers>
<a:Transfer>
<a:Date>2017-09-27T00:00:00</a:Date>
<a:DropoffLocation xmlns:b="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<b:string>Hilton NY JFK Airport</b:string>
</a:DropoffLocation>
<a:EstimatedDuration>0</a:EstimatedDuration>
<a:Facilities xmlns:b="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<b:string>Exclusive ride for you</b:string>
<b:string>Door to door service</b:string>
<b:string>Available 24/7</b:string>
<b:string>Meet & Greet service</b:string>
<b:string>1 item of hand baggage allowed per person</b:string>
<b:string>1 piece of baggage allowed per person ( max.dimensions 158cm) length+width+height=158cm</b:string>
</a:Facilities>
<a:PickUpRemarks>Domestic Flights: Before you collect your luggage a staff member will be waiting for you at the baggage claim area with a sign with your name on it. International Flights: Once you have cleared customs a staff member will be waiting for you outside customs area with a sign with your name on it. If you are unable to locate the driver, please call 1-718-442-4636or 1-800-542-1584 . Languages spoken at the call centre: English.</a:PickUpRemarks>
<a:PickupLocation xmlns:b="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<b:string>New York, John F Kennedy Int. Airport</b:string>
</a:PickupLocation>
<a:Remarks xmlns:b="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<b:string>EXCESS LUGGAGE - If you arrive at the destination with an excess of luggage, you will have to pay an additional charge for the extra undeclared weight. </b:string>
<b:string>CAN'T FIND DRIVER - In the event of being unable to locate the driver, please call the emergency number indicated in this voucher.</b:string>
<b:string>VOUCHER - Remember to bring this voucher and valid photo ID with you</b:string>
<b:string>BABY SEATS - If you are travelling with children it is required to use a child safety seat. Please note that it´s the parent or guardian reponsability to bring one, in the case of not complying with this requirement the service may not be provided.</b:string>
<b:string>Domestic: Total Driver Waiting Time 60 min. - Domestic Arrivals: For this service, the driver will wait a total of 60 min. (instead of the standard driver waiting time mentioned)</b:string>
<b:string>International: Total Driver waiting time 120 min. - International Arrivals: For this service, the driver will wait a total of 120 min. (instead of the standard driver waiting time mentioned)</b:string>
<b:string>Exclusive ride for you - </b:string>
<b:string>Door to door service - </b:string>
<b:string>Available 24/7 - </b:string>
<b:string>Meet & Greet service - </b:string>
<b:string>1 item of hand baggage allowed per person - </b:string>
<b:string>1 piece of baggage allowed per person ( max.dimensions 158cm) length+width+height=158cm - </b:string>
</a:Remarks>
<a:ServiceClass>Private</a:ServiceClass>
<a:ServiceType>Luxury</a:ServiceType>
<a:Time>PT0S</a:Time>
<a:VehicleType>Limousine</a:VehicleType>
</a:Transfer>
</a:Transfers>
</a:TransferPackage>
<a:TransferPackage>
<a:CancellationPolicies i:nil="true"/>
<a:Id>e33a5920-44df-49b5-b3f1-28e7e1f3776d</a:Id>
<a:Price>
<Currency>USD</Currency>
<FinalPrice>139.23</FinalPrice>
<FinalPriceInSupplierCurrency>139.23</FinalPriceInSupplierCurrency>
<OriginalPrice>139.23</OriginalPrice>
<OriginalPriceInSupplierCurrency>139.23</OriginalPriceInSupplierCurrency>
<SupplierCurrency>USD</SupplierCurrency>
</a:Price>
<a:SupplierId>13</a:SupplierId>
<a:SupplierName>HBS</a:SupplierName>
<a:Transfers>
<a:Transfer>
<a:Date>2017-09-27T00:00:00</a:Date>
<a:DropoffLocation xmlns:b="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<b:string>Hilton NY JFK Airport</b:string>
</a:DropoffLocation>
<a:EstimatedDuration>0</a:EstimatedDuration>
<a:Facilities xmlns:b="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<b:string>Exclusive ride for you</b:string>
<b:string>Door to door service</b:string>
<b:string>Available 24/7</b:string>
<b:string>Meet & Greet service</b:string>
<b:string>1 item of hand baggage allowed per person</b:string>
<b:string>1 piece of baggage allowed per person ( max.dimensions 158cm) length+width+height=158cm</b:string>
</a:Facilities>
<a:PickUpRemarks>Domestic Flights: Before you collect your luggage a staff member will be waiting for you at the baggage claim area with a sign with your name on it. International Flights: Once you have cleared customs a staff member will be waiting for you outside customs area with a sign with your name on it. If you are unable to locate the driver, please call 1-718-442-4636or 1-800-542-1584 . Languages spoken at the call centre: English.</a:PickUpRemarks>
<a:PickupLocation xmlns:b="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<b:string>New York, John F Kennedy Int. Airport</b:string>
</a:PickupLocation>
<a:Remarks xmlns:b="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<b:string>EXCESS LUGGAGE - If you arrive at the destination with an excess of luggage, you will have to pay an additional charge for the extra undeclared weight. </b:string>
<b:string>CAN'T FIND DRIVER - In the event of being unable to locate the driver, please call the emergency number indicated in this voucher.</b:string>
<b:string>VOUCHER - Remember to bring this voucher and valid photo ID with you</b:string>
<b:string>BABY SEATS - If you are travelling with children it is required to use a child safety seat. Please note that it´s the parent or guardian reponsability to bring one, in the case of not complying with this requirement the service may not be provided.</b:string>
<b:string>Domestic: Total Driver Waiting Time 60 min. - Domestic Arrivals: For this service, the driver will wait a total of 60 min. (instead of the standard driver waiting time mentioned)</b:string>
<b:string>International: Total Driver waiting time 120 min. - International Arrivals: For this service, the driver will wait a total of 120 min. (instead of the standard driver waiting time mentioned)</b:string>
<b:string>Exclusive ride for you - </b:string>
<b:string>Door to door service - </b:string>
<b:string>Available 24/7 - </b:string>
<b:string>Meet & Greet service - </b:string>
<b:string>1 item of hand baggage allowed per person - </b:string>
<b:string>1 piece of baggage allowed per person ( max.dimensions 158cm) length+width+height=158cm - </b:string>
</a:Remarks>
<a:ServiceClass>Private</a:ServiceClass>
<a:ServiceType>Luxury</a:ServiceType>
<a:Time>PT0S</a:Time>
<a:VehicleType>SUV</a:VehicleType>
</a:Transfer>
</a:Transfers>
</a:TransferPackage>
<a:TransferPackage>
<a:CancellationPolicies i:nil="true"/>
<a:Id>2958d821-3708-4c74-b040-6697e67e8cd9</a:Id>
<a:Price>
<Currency>USD</Currency>
<FinalPrice>139.23</FinalPrice>
<FinalPriceInSupplierCurrency>139.23</FinalPriceInSupplierCurrency>
<OriginalPrice>139.23</OriginalPrice>
<OriginalPriceInSupplierCurrency>139.23</OriginalPriceInSupplierCurrency>
<SupplierCurrency>USD</SupplierCurrency>
</a:Price>
<a:SupplierId>13</a:SupplierId>
<a:SupplierName>HBS</a:SupplierName>
<a:Transfers>
<a:Transfer>
<a:Date>2017-09-27T00:00:00</a:Date>
<a:DropoffLocation xmlns:b="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<b:string>Hilton NY JFK Airport</b:string>
</a:DropoffLocation>
<a:EstimatedDuration>0</a:EstimatedDuration>
<a:Facilities xmlns:b="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<b:string>Exclusive ride for you</b:string>
<b:string>Door to door service</b:string>
<b:string>Available 24/7</b:string>
<b:string>Meet & Greet service</b:string>
<b:string>1 item of hand baggage allowed per person</b:string>
<b:string>1 piece of baggage allowed per person ( max.dimensions 158cm) length+width+height=158cm</b:string>
</a:Facilities>
<a:PickUpRemarks>Domestic Flights: Before you collect your luggage a staff member will be waiting for you at the baggage claim area with a sign with your name on it. International Flights: Once you have cleared customs a staff member will be waiting for you outside customs area with a sign with your name on it. If you are unable to locate the driver, please call 1-718-442-4636or 1-800-542-1584 . Languages spoken at the call centre: English.</a:PickUpRemarks>
<a:PickupLocation xmlns:b="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<b:string>New York, John F Kennedy Int. Airport</b:string>
</a:PickupLocation>
<a:Remarks xmlns:b="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<b:string>EXCESS LUGGAGE - If you arrive at the destination with an excess of luggage, you will have to pay an additional charge for the extra undeclared weight. </b:string>
<b:string>CAN'T FIND DRIVER - In the event of being unable to locate the driver, please call the emergency number indicated in this voucher.</b:string>
<b:string>VOUCHER - Remember to bring this voucher and valid photo ID with you</b:string>
<b:string>BABY SEATS - If you are travelling with children it is required to use a child safety seat. Please note that it´s the parent or guardian reponsability to bring one, in the case of not complying with this requirement the service may not be provided.</b:string>
<b:string>Domestic: Total Driver Waiting Time 60 min. - Domestic Arrivals: For this service, the driver will wait a total of 60 min. (instead of the standard driver waiting time mentioned)</b:string>
<b:string>International: Total Driver waiting time 120 min. - International Arrivals: For this service, the driver will wait a total of 120 min. (instead of the standard driver waiting time mentioned)</b:string>
<b:string>Exclusive ride for you - </b:string>
<b:string>Door to door service - </b:string>
<b:string>Available 24/7 - </b:string>
<b:string>Meet & Greet service - </b:string>
<b:string>1 item of hand baggage allowed per person - </b:string>
<b:string>1 piece of baggage allowed per person ( max.dimensions 158cm) length+width+height=158cm - </b:string>
</a:Remarks>
<a:ServiceClass>Private</a:ServiceClass>
<a:ServiceType>Luxury</a:ServiceType>
<a:Time>PT0S</a:Time>
<a:VehicleType>SUV - Spanish</a:VehicleType>
</a:Transfer>
</a:Transfers>
</a:TransferPackage>
<a:TransferPackage>
<a:CancellationPolicies i:nil="true"/>
<a:Id>a7a63619-893f-4ad3-99f9-adc14b2e477e</a:Id>
<a:Price>
<Currency>USD</Currency>
<FinalPrice>207.18</FinalPrice>
<FinalPriceInSupplierCurrency>207.18</FinalPriceInSupplierCurrency>
<OriginalPrice>207.18</OriginalPrice>
<OriginalPriceInSupplierCurrency>207.18</OriginalPriceInSupplierCurrency>
<SupplierCurrency>USD</SupplierCurrency>
</a:Price>
<a:SupplierId>13</a:SupplierId>
<a:SupplierName>HBS</a:SupplierName>
<a:Transfers>
<a:Transfer>
<a:Date>2017-09-27T00:00:00</a:Date>
<a:DropoffLocation xmlns:b="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<b:string>Hilton NY JFK Airport</b:string>
</a:DropoffLocation>
<a:EstimatedDuration>0</a:EstimatedDuration>
<a:Facilities xmlns:b="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<b:string>Exclusive ride for you</b:string>
<b:string>Door to door service</b:string>
<b:string>Available 24/7</b:string>
<b:string>Meet & Greet service</b:string>
<b:string>1 item of hand baggage allowed per person</b:string>
<b:string>1 piece of baggage allowed per person ( max.dimensions 158cm) length+width+height=158cm</b:string>
</a:Facilities>
<a:PickUpRemarks>Domestic Flights: Before you collect your luggage a staff member will be waiting for you at the baggage claim area with a sign with your name on it. International Flights: Once you have cleared customs a staff member will be waiting for you outside customs area with a sign with your name on it. If you are unable to locate the driver, please call 1-718-442-4636or 1-800-542-1584 . Languages spoken at the call centre: English.</a:PickUpRemarks>
<a:PickupLocation xmlns:b="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<b:string>New York, John F Kennedy Int. Airport</b:string>
</a:PickupLocation>
<a:Remarks xmlns:b="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<b:string>EXCESS LUGGAGE - If you arrive at the destination with an excess of luggage, you will have to pay an additional charge for the extra undeclared weight. </b:string>
<b:string>CAN'T FIND DRIVER - In the event of being unable to locate the driver, please call the emergency number indicated in this voucher.</b:string>
<b:string>VOUCHER - Remember to bring this voucher and valid photo ID with you</b:string>
<b:string>BABY SEATS - If you are travelling with children it is required to use a child safety seat. Please note that it´s the parent or guardian reponsability to bring one, in the case of not complying with this requirement the service may not be provided.</b:string>
<b:string>Domestic: Total Driver Waiting Time 60 min. - Domestic Arrivals: For this service, the driver will wait a total of 60 min. (instead of the standard driver waiting time mentioned)</b:string>
<b:string>International: Total Driver waiting time 120 min. - International Arrivals: For this service, the driver will wait a total of 120 min. (instead of the standard driver waiting time mentioned)</b:string>
<b:string>Exclusive ride for you - </b:string>
<b:string>Door to door service - </b:string>
<b:string>Available 24/7 - </b:string>
<b:string>Meet & Greet service - </b:string>
<b:string>1 item of hand baggage allowed per person - </b:string>
<b:string>1 piece of baggage allowed per person ( max.dimensions 158cm) length+width+height=158cm - </b:string>
</a:Remarks>
<a:ServiceClass>Private</a:ServiceClass>
<a:ServiceType>Luxury</a:ServiceType>
<a:Time>PT0S</a:Time>
<a:VehicleType>Limousine - Spanish</a:VehicleType>
</a:Transfer>
</a:Transfers>
</a:TransferPackage>
<a:TransferPackage>
<a:CancellationPolicies i:nil="true"/>
<a:Id>dac5ca6a-d38c-451d-bebe-5b81a3516201</a:Id>
<a:Price>
<Currency>USD</Currency>
<FinalPrice>97.24</FinalPrice>
<FinalPriceInSupplierCurrency>97.24</FinalPriceInSupplierCurrency>
<OriginalPrice>97.24</OriginalPrice>
<OriginalPriceInSupplierCurrency>97.24</OriginalPriceInSupplierCurrency>
<SupplierCurrency>USD</SupplierCurrency>
</a:Price>
<a:SupplierId>13</a:SupplierId>
<a:SupplierName>HBS</a:SupplierName>
<a:Transfers>
<a:Transfer>
<a:Date>2017-09-27T00:00:00</a:Date>
<a:DropoffLocation xmlns:b="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<b:string>Hilton NY JFK Airport</b:string>
</a:DropoffLocation>
<a:EstimatedDuration>0</a:EstimatedDuration>
<a:Facilities xmlns:b="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<b:string>Exclusive ride for you</b:string>
<b:string>Door to door service</b:string>
<b:string>Available 24/7</b:string>
<b:string>Meet & Greet service</b:string>
<b:string>1 item of hand baggage allowed per person</b:string>
<b:string>1 piece of baggage allowed per person ( max.dimensions 158cm) length+width+height=158cm</b:string>
</a:Facilities>
<a:PickUpRemarks>Domestic Flights: Before you collect your luggage a staff member will be waiting for you at the baggage claim area with a sign with your name on it. International Flights: Once you have cleared customs a staff member will be waiting for you outside customs area with a sign with your name on it. If you are unable to locate the driver, please call 1-718-442-4636or 1-800-542-1584 . Languages spoken at the call centre: English.</a:PickUpRemarks>
<a:PickupLocation xmlns:b="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<b:string>New York, John F Kennedy Int. Airport</b:string>
</a:PickupLocation>
<a:Remarks xmlns:b="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<b:string>EXCESS LUGGAGE - If you arrive at the destination with an excess of luggage, you will have to pay an additional charge for the extra undeclared weight. </b:string>
<b:string>CAN'T FIND DRIVER - In the event of being unable to locate the driver, please call the emergency number indicated in this voucher.</b:string>
<b:string>VOUCHER - Remember to bring this voucher and valid photo ID with you</b:string>
<b:string>BABY SEATS - If you are travelling with children it is required to use a child safety seat. Please note that it´s the parent or guardian reponsability to bring one, in the case of not complying with this requirement the service may not be provided.</b:string>
<b:string>Domestic: Total Driver Waiting Time 60 min. - Domestic Arrivals: For this service, the driver will wait a total of 60 min. (instead of the standard driver waiting time mentioned)</b:string>
<b:string>International: Total Driver waiting time 120 min. - International Arrivals: For this service, the driver will wait a total of 120 min. (instead of the standard driver waiting time mentioned)</b:string>
<b:string>Exclusive ride for you - </b:string>
<b:string>Door to door service - </b:string>
<b:string>Available 24/7 - </b:string>
<b:string>Meet & Greet service - </b:string>
<b:string>1 item of hand baggage allowed per person - </b:string>
<b:string>1 piece of baggage allowed per person ( max.dimensions 158cm) length+width+height=158cm - </b:string>
</a:Remarks>
<a:ServiceClass>Private</a:ServiceClass>
<a:ServiceType>Luxury</a:ServiceType>
<a:Time>PT0S</a:Time>
<a:VehicleType>Sedan - Spanish</a:VehicleType>
</a:Transfer>
</a:Transfers>
</a:TransferPackage>
<a:TransferPackage>
<a:CancellationPolicies i:nil="true"/>
<a:Id>42710bf2-3b71-4f52-92c4-cec3b7ca3e1e</a:Id>
<a:Price>
<Currency>USD</Currency>
<FinalPrice>284.93</FinalPrice>
<FinalPriceInSupplierCurrency>284.93</FinalPriceInSupplierCurrency>
<OriginalPrice>284.93</OriginalPrice>
<OriginalPriceInSupplierCurrency>284.93</OriginalPriceInSupplierCurrency>
<SupplierCurrency>USD</SupplierCurrency>
</a:Price>
<a:SupplierId>13</a:SupplierId>
<a:SupplierName>HBS</a:SupplierName>
<a:Transfers>
<a:Transfer>
<a:Date>2017-09-27T00:00:00</a:Date>
<a:DropoffLocation xmlns:b="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<b:string>Hilton NY JFK Airport</b:string>
</a:DropoffLocation>
<a:EstimatedDuration>0</a:EstimatedDuration>
<a:Facilities xmlns:b="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<b:string>Exclusive ride for you</b:string>
<b:string>Door to door service</b:string>
<b:string>Available 24/7</b:string>
<b:string>Meet & Greet service</b:string>
<b:string>1 item of hand baggage allowed per person</b:string>
<b:string>1 piece of baggage allowed per person ( max.dimensions 158cm) length+width+height=158cm</b:string>
</a:Facilities>
<a:PickUpRemarks>Domestic Flights: Before you collect your luggage a staff member will be waiting for you at the baggage claim area with a sign with your name on it. International Flights: Once you have cleared customs a staff member will be waiting for you outside customs area with a sign with your name on it. If you are unable to locate the driver, please call 1-407-254-0474 or 1-866-435-5686 . Languages spoken at the call centre: English.</a:PickUpRemarks>
<a:PickupLocation xmlns:b="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<b:string>New York, John F Kennedy Int. Airport</b:string>
</a:PickupLocation>
<a:Remarks xmlns:b="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<b:string>EXCESS LUGGAGE - If you arrive at the destination with an excess of luggage, you will have to pay an additional charge for the extra undeclared weight. </b:string>
<b:string>Domestic: Total Driver Waiting Time 60 min. - Domestic Arrivals: For this service, the driver will wait a total of 60 min. (instead of the standard driver waiting time mentioned)</b:string>
<b:string>International: Total Driver waiting time 120 min. - International Arrivals: For this service, the driver will wait a total of 120 min. (instead of the standard driver waiting time mentioned)</b:string>
<b:string>CAN'T FIND DRIVER - In the event of being unable to locate the driver, please call the emergency number indicated in this voucher.</b:string>
<b:string>VOUCHER - Remember to bring this voucher and valid photo ID with you</b:string>
<b:string>BABY SEATS - If you are travelling with children it is required to use a child safety seat. Please note that it´s the parent or guardian reponsability to bring one, in the case of not complying with this requirement the service may not be provided.</b:string>
<b:string>CHILDBOOSTER / BABY SEAT - Child car seats and boosters are not included unless specified in your booking and can carry an extra cost. Should you need to book them, please contact your point of sale prior to travelling.</b:string>
<b:string>Exclusive ride for you - </b:string>
<b:string>Door to door service - </b:string>
<b:string>Available 24/7 - </b:string>
<b:string>Meet & Greet service - </b:string>
<b:string>1 item of hand baggage allowed per person - </b:string>
<b:string>1 piece of baggage allowed per person ( max.dimensions 158cm) length+width+height=158cm - </b:string>
</a:Remarks>
<a:ServiceClass>Private</a:ServiceClass>
<a:ServiceType>Luxury</a:ServiceType>
<a:Time>PT0S</a:Time>
<a:VehicleType>SUV-French</a:VehicleType>
</a:Transfer>
</a:Transfers>
</a:TransferPackage>
<a:TransferPackage>
<a:CancellationPolicies i:nil="true"/>
<a:Id>14b56673-75e6-4b15-9fde-e5a3cda32a1f</a:Id>
<a:Price>
<Currency>USD</Currency>
<FinalPrice>326.6</FinalPrice>
<FinalPriceInSupplierCurrency>326.6</FinalPriceInSupplierCurrency>
<OriginalPrice>326.6</OriginalPrice>
<OriginalPriceInSupplierCurrency>326.6</OriginalPriceInSupplierCurrency>
<SupplierCurrency>USD</SupplierCurrency>
</a:Price>
<a:SupplierId>13</a:SupplierId>
<a:SupplierName>HBS</a:SupplierName>
<a:Transfers>
<a:Transfer>
<a:Date>2017-09-27T00:00:00</a:Date>
<a:DropoffLocation xmlns:b="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<b:string>Hilton NY JFK Airport</b:string>
</a:DropoffLocation>
<a:EstimatedDuration>0</a:EstimatedDuration>
<a:Facilities xmlns:b="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<b:string>Exclusive ride for you</b:string>
<b:string>Door to door service</b:string>
<b:string>Available 24/7</b:string>
<b:string>Meet & Greet service</b:string>
<b:string>1 item of hand baggage allowed per person</b:string>
<b:string>1 piece of baggage allowed per person ( max.dimensions 158cm) length+width+height=158cm</b:string>
</a:Facilities>
<a:PickUpRemarks>Domestic Flights: Before you collect your luggage a staff member will be waiting for you at the baggage claim area with a sign with your name on it. International Flights: Once you have cleared customs a staff member will be waiting for you outside customs area with a sign with your name on it. If you are unable to locate the driver, please call 1-407-254-0474 or 1-866-435-5686 . Languages spoken at the call centre: English.</a:PickUpRemarks>
<a:PickupLocation xmlns:b="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<b:string>New York, John F Kennedy Int. Airport</b:string>
</a:PickupLocation>
<a:Remarks xmlns:b="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<b:string>EXCESS LUGGAGE - If you arrive at the destination with an excess of luggage, you will have to pay an additional charge for the extra undeclared weight. </b:string>
<b:string>Domestic: Total Driver Waiting Time 60 min. - Domestic Arrivals: For this service, the driver will wait a total of 60 min. (instead of the standard driver waiting time mentioned)</b:string>
<b:string>International: Total Driver waiting time 120 min. - International Arrivals: For this service, the driver will wait a total of 120 min. (instead of the standard driver waiting time mentioned)</b:string>
<b:string>CAN'T FIND DRIVER - In the event of being unable to locate the driver, please call the emergency number indicated in this voucher.</b:string>
<b:string>VOUCHER - Remember to bring this voucher and valid photo ID with you</b:string>
<b:string>BABY SEATS - If you are travelling with children it is required to use a child safety seat. Please note that it´s the parent or guardian reponsability to bring one, in the case of not complying with this requirement the service may not be provided.</b:string>
<b:string>CHILDBOOSTER / BABY SEAT - Child car seats and boosters are not included unless specified in your booking and can carry an extra cost. Should you need to book them, please contact your point of sale prior to travelling.</b:string>
<b:string>Exclusive ride for you - </b:string>
<b:string>Door to door service - </b:string>
<b:string>Available 24/7 - </b:string>
<b:string>Meet & Greet service - </b:string>
<b:string>1 item of hand baggage allowed per person - </b:string>
<b:string>1 piece of baggage allowed per person ( max.dimensions 158cm) length+width+height=158cm - </b:string>
</a:Remarks>
<a:ServiceClass>Private</a:ServiceClass>
<a:ServiceType>Luxury</a:ServiceType>
<a:Time>PT0S</a:Time>
<a:VehicleType>Limousine - French</a:VehicleType>
</a:Transfer>
</a:Transfers>
</a:TransferPackage>
<a:TransferPackage>
<a:CancellationPolicies i:nil="true"/>
<a:Id>6ade97a5-2654-4026-a52c-6a5d44a15224</a:Id>
<a:Price>
<Currency>USD</Currency>
<FinalPrice>284.93</FinalPrice>
<FinalPriceInSupplierCurrency>284.93</FinalPriceInSupplierCurrency>
<OriginalPrice>284.93</OriginalPrice>
<OriginalPriceInSupplierCurrency>284.93</OriginalPriceInSupplierCurrency>
<SupplierCurrency>USD</SupplierCurrency>
</a:Price>
<a:SupplierId>13</a:SupplierId>
<a:SupplierName>HBS</a:SupplierName>
<a:Transfers>
<a:Transfer>
<a:Date>2017-09-27T00:00:00</a:Date>
<a:DropoffLocation xmlns:b="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<b:string>Hilton NY JFK Airport</b:string>
</a:DropoffLocation>
<a:EstimatedDuration>0</a:EstimatedDuration>
<a:Facilities xmlns:b="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<b:string>Exclusive ride for you</b:string>
<b:string>Door to door service</b:string>
<b:string>Available 24/7</b:string>
<b:string>Meet & Greet service</b:string>
<b:string>1 item of hand baggage allowed per person</b:string>
</a:Facilities>
<a:PickUpRemarks>Domestic Flights: Before you collect your luggage a staff member will be waiting for you at the baggage claim area with a sign with your name on it. International Flights: Once you have cleared customs a staff member will be waiting for you outside customs area with a sign with your name on it. If you are unable to locate the driver, please call 1-407-254-0474 or 1-866-435-5686 . Languages spoken at the call centre: English.</a:PickUpRemarks>
<a:PickupLocation xmlns:b="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<b:string>New York, John F Kennedy Int. Airport</b:string>
</a:PickupLocation>
<a:Remarks xmlns:b="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<b:string>EXCESS LUGGAGE - If you arrive at the destination with an excess of luggage, you will have to pay an additional charge for the extra undeclared weight. </b:string>
<b:string>Domestic: Total Driver Waiting Time 60 min. - Domestic Arrivals: For this service, the driver will wait a total of 60 min. (instead of the standard driver waiting time mentioned)</b:string>
<b:string>International: Total Driver waiting time 120 min. - International Arrivals: For this service, the driver will wait a total of 120 min. (instead of the standard driver waiting time mentioned)</b:string>
<b:string>CAN'T FIND DRIVER - In the event of being unable to locate the driver, please call the emergency number indicated in this voucher.</b:string>
<b:string>VOUCHER - Remember to bring this voucher and valid photo ID with you</b:string>
<b:string>BABY SEATS - If you are travelling with children it is required to use a child safety seat. Please note that it´s the parent or guardian reponsability to bring one, in the case of not complying with this requirement the service may not be provided.</b:string>
<b:string>CHILDBOOSTER / BABY SEAT - Child car seats and boosters are not included unless specified in your booking and can carry an extra cost. Should you need to book them, please contact your point of sale prior to travelling.</b:string>
<b:string>Exclusive ride for you - </b:string>
<b:string>Door to door service - </b:string>
<b:string>Available 24/7 - </b:string>
<b:string>Meet & Greet service - </b:string>
<b:string>1 item of hand baggage allowed per person - </b:string>
</a:Remarks>
<a:ServiceClass>Private</a:ServiceClass>
<a:ServiceType>Premium</a:ServiceType>
<a:Time>PT0S</a:Time>
<a:VehicleType>Minivan extra luggage</a:VehicleType>
</a:Transfer>
</a:Transfers>
</a:TransferPackage>
<a:TransferPackage>
<a:CancellationPolicies i:nil="true"/>
<a:Id>c1d2e519-06a6-4d98-ac48-5f6420be0f0d</a:Id>
<a:Price>
<Currency>USD</Currency>
<FinalPrice>284.93</FinalPrice>
<FinalPriceInSupplierCurrency>284.93</FinalPriceInSupplierCurrency>
<OriginalPrice>284.93</OriginalPrice>
<OriginalPriceInSupplierCurrency>284.93</OriginalPriceInSupplierCurrency>
<SupplierCurrency>USD</SupplierCurrency>
</a:Price>
<a:SupplierId>13</a:SupplierId>
<a:SupplierName>HBS</a:SupplierName>
<a:Transfers>
<a:Transfer>
<a:Date>2017-09-27T00:00:00</a:Date>
<a:DropoffLocation xmlns:b="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<b:string>Hilton NY JFK Airport</b:string>
</a:DropoffLocation>
<a:EstimatedDuration>0</a:EstimatedDuration>
<a:Facilities xmlns:b="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<b:string>Exclusive ride for you</b:string>
<b:string>Door to door service</b:string>
<b:string>Available 24/7</b:string>
<b:string>Meet & Greet service</b:string>
<b:string>1 item of hand baggage allowed per person</b:string>
<b:string>1 piece of baggage allowed per person ( max.dimensions 158cm) length+width+height=158cm</b:string>
</a:Facilities>
<a:PickUpRemarks>Domestic Flights: Before you collect your luggage a staff member will be waiting for you at the baggage claim area with a sign with your name on it. International Flights: Once you have cleared customs a staff member will be waiting for you outside customs area with a sign with your name on it. If you are unable to locate the driver, please call 1-407-254-0474 or 1-866-435-5686 . Languages spoken at the call centre: English.</a:PickUpRemarks>
<a:PickupLocation xmlns:b="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<b:string>New York, John F Kennedy Int. Airport</b:string>
</a:PickupLocation>
<a:Remarks xmlns:b="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<b:string>EXCESS LUGGAGE - If you arrive at the destination with an excess of luggage, you will have to pay an additional charge for the extra undeclared weight. </b:string>
<b:string>Domestic: Total Driver Waiting Time 60 min. - Domestic Arrivals: For this service, the driver will wait a total of 60 min. (instead of the standard driver waiting time mentioned)</b:string>
<b:string>International: Total Driver waiting time 120 min. - International Arrivals: For this service, the driver will wait a total of 120 min. (instead of the standard driver waiting time mentioned)</b:string>
<b:string>CAN'T FIND DRIVER - In the event of being unable to locate the driver, please call the emergency number indicated in this voucher.</b:string>
<b:string>VOUCHER - Remember to bring this voucher and valid photo ID with you</b:string>
<b:string>BABY SEATS - If you are travelling with children it is required to use a child safety seat. Please note that it´s the parent or guardian reponsability to bring one, in the case of not complying with this requirement the service may not be provided.</b:string>
<b:string>CHILDBOOSTER / BABY SEAT - Child car seats and boosters are not included unless specified in your booking and can carry an extra cost. Should you need to book them, please contact your point of sale prior to travelling.</b:string>
<b:string>Exclusive ride for you - </b:string>
<b:string>Door to door service - </b:string>
<b:string>Available 24/7 - </b:string>
<b:string>Meet & Greet service - </b:string>
<b:string>1 item of hand baggage allowed per person - </b:string>
<b:string>1 piece of baggage allowed per person ( max.dimensions 158cm) length+width+height=158cm - </b:string>
</a:Remarks>
<a:ServiceClass>Private</a:ServiceClass>
<a:ServiceType>Luxury</a:ServiceType>
<a:Time>PT0S</a:Time>
<a:VehicleType>Minivan - French</a:VehicleType>
</a:Transfer>
</a:Transfers>
</a:TransferPackage>
<a:TransferPackage>
<a:CancellationPolicies i:nil="true"/>
<a:Id>4e42f3be-90ac-4657-a0fe-d4c337d29d47</a:Id>
<a:Price>
<Currency>USD</Currency>
<FinalPrice>158.61</FinalPrice>
<FinalPriceInSupplierCurrency>158.61</FinalPriceInSupplierCurrency>
<OriginalPrice>158.61</OriginalPrice>
<OriginalPriceInSupplierCurrency>158.61</OriginalPriceInSupplierCurrency>
<SupplierCurrency>USD</SupplierCurrency>
</a:Price>
<a:SupplierId>13</a:SupplierId>
<a:SupplierName>HBS</a:SupplierName>
<a:Transfers>
<a:Transfer>
<a:Date>2017-09-27T00:00:00</a:Date>
<a:DropoffLocation xmlns:b="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<b:string>Hilton NY JFK Airport</b:string>
</a:DropoffLocation>
<a:EstimatedDuration>0</a:EstimatedDuration>
<a:Facilities xmlns:b="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<b:string>Exclusive ride for you</b:string>
<b:string>Door to door service</b:string>
<b:string>Available 24/7</b:string>
<b:string>Meet & Greet service</b:string>
<b:string>1 item of hand baggage allowed per person</b:string>
</a:Facilities>
<a:PickUpRemarks>Domestic Flights: Before you collect your luggage a staff member will be waiting for you at the baggage claim area with a sign with your name on it. International Flights: Once you have cleared customs a staff member will be waiting for you outside customs area with a sign with your name on it. If you are unable to locate the driver, please call 1-407-254-0474 or 1-866-435-5686 . Languages spoken at the call centre: English.</a:PickUpRemarks>
<a:PickupLocation xmlns:b="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<b:string>New York, John F Kennedy Int. Airport</b:string>
</a:PickupLocation>
<a:Remarks xmlns:b="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<b:string>EXCESS LUGGAGE - If you arrive at the destination with an excess of luggage, you will have to pay an additional charge for the extra undeclared weight. </b:string>
<b:string>Domestic: Total Driver Waiting Time 60 min. - Domestic Arrivals: For this service, the driver will wait a total of 60 min. (instead of the standard driver waiting time mentioned)</b:string>
<b:string>International: Total Driver waiting time 120 min. - International Arrivals: For this service, the driver will wait a total of 120 min. (instead of the standard driver waiting time mentioned)</b:string>
<b:string>CAN'T FIND DRIVER - In the event of being unable to locate the driver, please call the emergency number indicated in this voucher.</b:string>
<b:string>VOUCHER - Remember to bring this voucher and valid photo ID with you</b:string>
<b:string>BABY SEATS - If you are travelling with children it is required to use a child safety seat. Please note that it´s the parent or guardian reponsability to bring one, in the case of not complying with this requirement the service may not be provided.</b:string>
<b:string>CHILDBOOSTER / BABY SEAT - Child car seats and boosters are not included unless specified in your booking and can carry an extra cost. Should you need to book them, please contact your point of sale prior to travelling.</b:string>
<b:string>Exclusive ride for you - </b:string>
<b:string>Door to door service - </b:string>
<b:string>Available 24/7 - </b:string>
<b:string>Meet & Greet service - </b:string>
<b:string>1 item of hand baggage allowed per person - </b:string>
</a:Remarks>
<a:ServiceClass>Private</a:ServiceClass>
<a:ServiceType>Luxury</a:ServiceType>
<a:Time>PT0S</a:Time>
<a:VehicleType>Sedan - French</a:VehicleType>
</a:Transfer>
</a:Transfers>
</a:TransferPackage>
<a:TransferPackage>
<a:CancellationPolicies i:nil="true"/>
<a:Id>04435d90-f5c7-4ac6-be32-9d91df2e4943</a:Id>
<a:Price>
<Currency>USD</Currency>
<FinalPrice>76.08</FinalPrice>
<FinalPriceInSupplierCurrency>76.08</FinalPriceInSupplierCurrency>
<OriginalPrice>76.08</OriginalPrice>
<OriginalPriceInSupplierCurrency>76.08</OriginalPriceInSupplierCurrency>
<SupplierCurrency>USD</SupplierCurrency>
</a:Price>
<a:SupplierId>13</a:SupplierId>
<a:SupplierName>HBS</a:SupplierName>
<a:Transfers>
<a:Transfer>
<a:Date>2017-09-27T00:00:00</a:Date>
<a:DropoffLocation xmlns:b="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<b:string>Hilton NY JFK Airport</b:string>
</a:DropoffLocation>
<a:EstimatedDuration>0</a:EstimatedDuration>
<a:Facilities xmlns:b="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<b:string>Superior service</b:string>
<b:string>Maximum</b:string>
<b:string>1 item of hand baggage allowed per person</b:string>
<b:string>1 piece of baggage allowed per person ( max.dimensions 158cm) length+width+height=158cm</b:string>
</a:Facilities>
<a:PickUpRemarks>Domestic Flights: Before you collect your luggage a staff member will be waiting for you at the baggage claim area with a sign with your name on it. International Flights: Once you have cleared customs a staff member will be waiting for you outside customs area with a sign with your name on it. If you are unable to locate the driver, please call 1-718-442-4636or 1-800-542-1584 . Languages spoken at the call centre: English.</a:PickUpRemarks>
<a:PickupLocation xmlns:b="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<b:string>New York, John F Kennedy Int. Airport</b:string>
</a:PickupLocation>
<a:Remarks xmlns:b="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<b:string>CAN'T FIND DRIVER - In the event of being unable to locate the driver, please call the emergency number indicated in this voucher.</b:string>
<b:string>VOUCHER - Remember to bring this voucher and valid photo ID with you</b:string>
<b:string>CHILDBOOSTER / BABY SEAT - Child car seats and boosters are not included unless specified in your booking and can carry an extra cost. Should you need to book them, please contact your point of sale prior to travelling.</b:string>
<b:string>Superior service - </b:string>
<b:string>Maximum - </b:string>
<b:string>1 item of hand baggage allowed per person - </b:string>
<b:string>1 piece of baggage allowed per person ( max.dimensions 158cm) length+width+height=158cm - </b:string>
</a:Remarks>
<a:ServiceClass>Shared - Shuttle</a:ServiceClass>
<a:ServiceType>Premium</a:ServiceType>
<a:Time>PT0S</a:Time>
<a:VehicleType>Minibus - Portuguese</a:VehicleType>
</a:Transfer>
</a:Transfers>
</a:TransferPackage>
</a:Packages>
<a:RequestInfo>
<a:TransferRequestInfo>
<a:Date>2017-09-27T00:00:00+00:00</a:Date>
<a:DropOffLocation>
<a:AirportCode i:nil="true"/>
<a:HotelId>4158590</a:HotelId>
<a:LocationId>0</a:LocationId>
<a:LocationType>Hotel</a:LocationType>
</a:DropOffLocation>
<a:PickupLocation>
<a:AirportCode>JFK</a:AirportCode>
<a:HotelId>0</a:HotelId>
<a:LocationId>0</a:LocationId>
<a:LocationType>Airport</a:LocationType>
</a:PickupLocation>
<a:Time>PT0S</a:Time>
</a:TransferRequestInfo>
</a:RequestInfo>
</a:TransferPackageGrouping>
<a:TransferPackageGrouping>
<a:Packages>
<a:TransferPackage>
<a:CancellationPolicies i:nil="true"/>
<a:Id>fe6577a6-447c-474b-9112-46925ba8f49d</a:Id>
<a:Price>
<Currency>USD</Currency>
<FinalPrice>35.5</FinalPrice>
<FinalPriceInSupplierCurrency>35.5</FinalPriceInSupplierCurrency>
<OriginalPrice>35.5</OriginalPrice>
<OriginalPriceInSupplierCurrency>35.5</OriginalPriceInSupplierCurrency>
<SupplierCurrency>USD</SupplierCurrency>
</a:Price>
<a:SupplierId>13</a:SupplierId>
<a:SupplierName>HBS</a:SupplierName>
<a:Transfers>
<a:Transfer>
<a:Date>2017-09-19T00:00:00</a:Date>
<a:DropoffLocation xmlns:b="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<b:string>New York, John F Kennedy Int. Airport</b:string>
</a:DropoffLocation>
<a:EstimatedDuration>0</a:EstimatedDuration>
<a:Facilities xmlns:b="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<b:string>Maximum</b:string>
<b:string>1 item of hand baggage allowed per person</b:string>
<b:string>1 piece of baggage allowed per person ( max.dimensions 158cm) length+width+height=158cm</b:string>
</a:Facilities>
<a:PickUpRemarks>Supplier: GO AIRLINK Please call 1-212-812-9000 at least 24 hours prior to departure to reconfirm the pick up time. You will be picked up outside the hotel entrance. If you are unable to locate the driver, please call AIRLINK NEW YORK on 877-599-8200/212-812-9000. Languages spoken at the call centre: English.</a:PickUpRemarks>
<a:PickupLocation xmlns:b="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<b:string>Hilton NY JFK Airport</b:string>
</a:PickupLocation>
<a:Remarks xmlns:b="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<b:string>INTERNATIONAL FLIGHTS - For International flights, you are advised to be at the airport 3 hours before the departure of the flight.</b:string>
<b:string>VOUCHER - Remember to bring this voucher and valid photo ID with you</b:string>
<b:string>DOMESTIC FLIGHTS - For domestic flights, you are advised to be at the airport 2 hours before the departure of the flight.</b:string>
<b:string>CAN'T FIND DRIVER - In the event of being unable to locate the driver, please call the emergency number indicated in this voucher.</b:string>
<b:string>BABY SEATS - If you are travelling with children it is required to use a child safety seat. Please note that it´s the parent or guardian reponsability to bring one, in the case of not complying with this requirement the service may not be provided.</b:string>
<b:string>CAPACITY - Maximum capacity in your transportation vehicle is 10. For parties more than 10 please note that service will provided in separate vehicles.</b:string>
<b:string>Maximum - </b:string>
<b:string>1 item of hand baggage allowed per person - </b:string>
<b:string>1 piece of baggage allowed per person ( max.dimensions 158cm) length+width+height=158cm - </b:string>
</a:Remarks>
<a:ServiceClass>Shared - Shuttle</a:ServiceClass>
<a:ServiceType>Express</a:ServiceType>
<a:Time>PT0S</a:Time>
<a:VehicleType>Minibus</a:VehicleType>
</a:Transfer>
</a:Transfers>
</a:TransferPackage>
</a:Packages>
<a:RequestInfo>
<a:TransferRequestInfo>
<a:Date>2017-09-19T13:53:00+00:00</a:Date>
<a:DropOffLocation>
<a:AirportCode>JFK</a:AirportCode>
<a:HotelId>0</a:HotelId>
<a:LocationId>0</a:LocationId>
<a:LocationType>Airport</a:LocationType>
</a:DropOffLocation>
<a:PickupLocation>
<a:AirportCode i:nil="true"/>
<a:HotelId>4158590</a:HotelId>
<a:LocationId>0</a:LocationId>
<a:LocationType>Hotel</a:LocationType>
</a:PickupLocation>
<a:Time>PT0S</a:Time>
</a:TransferRequestInfo>
</a:RequestInfo>
</a:TransferPackageGrouping>
</Result>
</TransfersSearchResponse>
</ServiceRequestResult>
</ServiceRequestResponse>
</s:Body>
</s:Envelope>
Transfers PriceValidation
Each Transfers rate has cancellation policy data which can be retrieved by the Transfers PriceValidation API call. Using this call will re-validate the rate price, offer all crucial information regarding the cancellation policy and other details.
Transfers Price Validation Request Fields
Field | Description | Mandatory |
---|---|---|
ClientIP | The IP address from which the request is sent | |
guid | The Package GUID returned on Transfers search response | Yes |
RequestType | Type of the request (GetCancelationPolicy) | Yes |
SessionID | ID of the Transfers booking session | Yes |
TypeOfService | Transfers | Yes |
Transfers Price Validation Response Fields
Field | Description |
---|---|
Currency | The offered cancellation penalty currency, determined by the user on search |
FinalPrice | Cancellation penalty |
FinalPriceInSupplierCurrency | The cancellation penalty, in the supplier's currency |
OriginalPrice | Cancellation penalty |
OriginalPriceInSupplierCurrency | Cancellation penalty in the supplier currency |
SupplierCurrency | The currency retrieved from the supplier |
DateFrom | The cancellation deadline, after which the cancellation penalty will be charged |
Id | Internal cancellation policy ID |
Currency | The offered rate's currency, determined by the user on search |
FinalPrice | Final price after markup and commission |
FinalPriceInSupplierCurrency | The final price, including markups and commission, in the supplier's currency |
OriginalPrice | Price before markup and commission |
OriginalPriceInSupplierCurrency | Price before markup and commission in the supplier's currency |
SupplierCurrency | The currency retrieved from the supplier |
SupplierId | Internal supplier ID |
SupplierName | The supplier's name |
Date | The date of the transfer |
DropoffLocation | Full name of the drop-off location |
EstimatedDuration | Estimated time of the transfer in minutes |
Facilities | Transfer's facilities |
PickUpRemarks | Pick-up remarks |
PickupLocation | Full name of the pick-up location |
Remarks | The transfer remarks |
ServiceClass | Transfer class (Private, Shared, etc.) |
ServiceType | Transfer type (Luxury, etc.) |
Time | Time of the transfer |
VehicleType | Transfer's vehicle vendor |
Transfers Price Validation Request
<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
<s:Body>
<ServiceRequest xmlns="http://tempuri.org/">
<rqst xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
<Credentials xmlns="">
<Password>****</Password>
<UserName>****</UserName>
</Credentials>
<Request xmlns="" xmlns:a="http://schemas.datacontract.org/2004/07/IsuBe.Public.Enteties.Transfers" i:type="a:TransfersSearchRequest">
<ClientIP i:nil="true"/>
<DesiredResultCurrency>USD</DesiredResultCurrency>
<Residency>US</Residency>
<TimeoutSeconds>0</TimeoutSeconds>
<a:Adults>2</a:Adults>
<a:Card xmlns:b="http://schemas.datacontract.org/2004/07/IsuBe.Public.Enteties.Payment" i:nil="true"/>
<a:ContractIds xmlns:b="http://schemas.microsoft.com/2003/10/Serialization/Arrays"/>
<a:KidsAges xmlns:b="http://schemas.microsoft.com/2003/10/Serialization/Arrays"/>
<a:SelectedPaymentMethod i:nil="true"/>
<a:ServiceFee i:nil="true"/>
<a:SupplierIds xmlns:b="http://schemas.microsoft.com/2003/10/Serialization/Arrays"/>
<a:TransferInfo>
<a:TransferRequestInfo>
<a:Date>2017-09-27T00:00:00</a:Date>
<a:DropOffLocation>
<a:AirportCode i:nil="true"/>
<a:HotelId>4158590</a:HotelId>
<a:LocationId>0</a:LocationId>
<a:LocationType>Hotel</a:LocationType>
</a:DropOffLocation>
<a:PickupLocation>
<a:AirportCode>JFK</a:AirportCode>
<a:HotelId>0</a:HotelId>
<a:LocationId>0</a:LocationId>
<a:LocationType>Airport</a:LocationType>
</a:PickupLocation>
<a:Time>PT0S</a:Time>
</a:TransferRequestInfo>
<a:TransferRequestInfo>
<a:Date>2017-09-19T13:53:00</a:Date>
<a:DropOffLocation>
<a:AirportCode>JFK</a:AirportCode>
<a:HotelId>0</a:HotelId>
<a:LocationId>0</a:LocationId>
<a:LocationType>Airport</a:LocationType>
</a:DropOffLocation>
<a:PickupLocation>
<a:AirportCode i:nil="true"/>
<a:HotelId>4158590</a:HotelId>
<a:LocationId>0</a:LocationId>
<a:LocationType>Hotel</a:LocationType>
</a:PickupLocation>
<a:Time>PT0S</a:Time>
</a:TransferRequestInfo>
</a:TransferInfo>
</Request>
<RequestType xmlns="">Search</RequestType>
<TypeOfService xmlns="">Transfers</TypeOfService>
</rqst>
</ServiceRequest>
</s:Body>
</s:Envelope>
Transfers Price Validation Response
<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
<s:Body>
<ServiceRequestResponse xmlns="http://tempuri.org/">
<ServiceRequestResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
<Errors xmlns=""/>
<SessionID xmlns="">/22/84812/D20170919T105646/3c05e67de0de463981cb2aadd6a36321</SessionID>
<TransfersSearchResponse xmlns="">
<Result xmlns:a="http://schemas.datacontract.org/2004/07/IsuBe.Public.Enteties.Transfers">
<a:TransferPackageGrouping>
<a:Packages>
<a:TransferPackage>
<a:CancellationPolicies i:nil="true"/>
<a:Id>6640007a-a6e6-4243-b94d-225722831dd8</a:Id>
<a:Price>
<Currency>USD</Currency>
<FinalPrice>92.38</FinalPrice>
<FinalPriceInSupplierCurrency>92.38</FinalPriceInSupplierCurrency>
<OriginalPrice>92.38</OriginalPrice>
<OriginalPriceInSupplierCurrency>92.38</OriginalPriceInSupplierCurrency>
<SupplierCurrency>USD</SupplierCurrency>
</a:Price>
<a:SupplierId>13</a:SupplierId>
<a:SupplierName>HBS</a:SupplierName>
<a:Transfers>
<a:Transfer>
<a:Date>2017-09-27T00:00:00</a:Date>
<a:DropoffLocation xmlns:b="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<b:string>Hilton NY JFK Airport</b:string>
</a:DropoffLocation>
<a:EstimatedDuration>0</a:EstimatedDuration>
<a:Facilities xmlns:b="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<b:string>Exclusive ride for you</b:string>
<b:string>Door to door service</b:string>
<b:string>Available 24/7</b:string>
<b:string>Meet & Greet service</b:string>
<b:string>1 item of hand baggage allowed per person</b:string>
<b:string>1 piece of baggage allowed per person ( max.dimensions 158cm) length+width+height=158cm</b:string>
</a:Facilities>
<a:PickUpRemarks>Domestic Flights: Before you collect your luggage a staff member will be waiting for you at the baggage claim area with a sign with your name on it. International Flights: Once you have cleared customs a staff member will be waiting for you outside customs area with a sign with your name on it. If you are unable to locate the driver, please call 1-718-442-4636or 1-800-542-1584 . Languages spoken at the call centre: English.</a:PickUpRemarks>
<a:PickupLocation xmlns:b="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<b:string>New York, John F Kennedy Int. Airport</b:string>
</a:PickupLocation>
<a:Remarks xmlns:b="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<b:string>EXCESS LUGGAGE - If you arrive at the destination with an excess of luggage, you will have to pay an additional charge for the extra undeclared weight. </b:string>
<b:string>CAN'T FIND DRIVER - In the event of being unable to locate the driver, please call the emergency number indicated in this voucher.</b:string>
<b:string>VOUCHER - Remember to bring this voucher and valid photo ID with you</b:string>
<b:string>BABY SEATS - If you are travelling with children it is required to use a child safety seat. Please note that it´s the parent or guardian reponsability to bring one, in the case of not complying with this requirement the service may not be provided.</b:string>
<b:string>Domestic: Total Driver Waiting Time 60 min. - Domestic Arrivals: For this service, the driver will wait a total of 60 min. (instead of the standard driver waiting time mentioned)</b:string>
<b:string>International: Total Driver waiting time 120 min. - International Arrivals: For this service, the driver will wait a total of 120 min. (instead of the standard driver waiting time mentioned)</b:string>
<b:string>Exclusive ride for you - </b:string>
<b:string>Door to door service - </b:string>
<b:string>Available 24/7 - </b:string>
<b:string>Meet & Greet service - </b:string>
<b:string>1 item of hand baggage allowed per person - </b:string>
<b:string>1 piece of baggage allowed per person ( max.dimensions 158cm) length+width+height=158cm - </b:string>
</a:Remarks>
<a:ServiceClass>Private</a:ServiceClass>
<a:ServiceType>Luxury</a:ServiceType>
<a:Time>PT0S</a:Time>
<a:VehicleType>Sedan</a:VehicleType>
</a:Transfer>
</a:Transfers>
</a:TransferPackage>
<a:TransferPackage>
<a:CancellationPolicies i:nil="true"/>
<a:Id>4372b89a-3744-45f5-afa0-44c3a21293b2</a:Id>
<a:Price>
<Currency>USD</Currency>
<FinalPrice>35.5</FinalPrice>
<FinalPriceInSupplierCurrency>35.5</FinalPriceInSupplierCurrency>
<OriginalPrice>35.5</OriginalPrice>
<OriginalPriceInSupplierCurrency>35.5</OriginalPriceInSupplierCurrency>
<SupplierCurrency>USD</SupplierCurrency>
</a:Price>
<a:SupplierId>13</a:SupplierId>
<a:SupplierName>HBS</a:SupplierName>
<a:Transfers>
<a:Transfer>
<a:Date>2017-09-27T00:00:00</a:Date>
<a:DropoffLocation xmlns:b="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<b:string>Hilton NY JFK Airport</b:string>
</a:DropoffLocation>
<a:EstimatedDuration>0</a:EstimatedDuration>
<a:Facilities xmlns:b="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<b:string>Maximum</b:string>
<b:string>1 item of hand baggage allowed per person</b:string>
<b:string>1 piece of baggage allowed per person ( max.dimensions 158cm) length+width+height=158cm</b:string>
</a:Facilities>
<a:PickUpRemarks>Supplier: GO AIRLINK Once you have collected your luggage, proceed to the Ground Transportation Desk in your arriving terminal and present the voucher to the Agent who will arrange the transfer. If the Agent is not at the desk, go to the transportation phone bank and call GO Airlink (dial 18). When boarding please make sure that the vehicle is a GO Airlink van.</a:PickUpRemarks>
<a:PickupLocation xmlns:b="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<b:string>New York, John F Kennedy Int. Airport</b:string>
</a:PickupLocation>
<a:Remarks xmlns:b="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<b:string>VOUCHER - Remember to bring this voucher and valid photo ID with you</b:string>
<b:string>EXCESS LUGGAGE - If you arrive at the destination with an excess of luggage, you will have to pay an additional charge for the extra undeclared weight. </b:string>
<b:string>CAN'T FIND MEETING POINT - In the event of being unable to locate the meeting point, please call the emergency number indicated in this voucher.</b:string>
<b:string>BABY SEATS - If you are travelling with children it is required to use a child safety seat. Please note that it´s the parent or guardian reponsability to bring one, in the case of not complying with this requirement the service may not be provided.</b:string>
<b:string>Domestic: Total Driver Waiting Time 60 min. - Domestic Arrivals: For this service, the driver will wait a total of 60 min. (instead of the standard driver waiting time mentioned)</b:string>
<b:string>International: Total Driver waiting time 120 min. - International Arrivals: For this service, the driver will wait a total of 120 min. (instead of the standard driver waiting time mentioned)</b:string>
<b:string>CAPACITY - Maximum capacity in your transportation vehicle is 10. For parties more than 10 please note that service will provided in separate vehicles.</b:string>
<b:string>Maximum - </b:string>
<b:string>1 item of hand baggage allowed per person - </b:string>
<b:string>1 piece of baggage allowed per person ( max.dimensions 158cm) length+width+height=158cm - </b:string>
</a:Remarks>
<a:ServiceClass>Shared - Shuttle</a:ServiceClass>
<a:ServiceType>Express</a:ServiceType>
<a:Time>PT0S</a:Time>
<a:VehicleType>Minibus</a:VehicleType>
</a:Transfer>
</a:Transfers>
</a:TransferPackage>
<a:TransferPackage>
<a:CancellationPolicies i:nil="true"/>
<a:Id>ae7718e5-ae9d-483d-991e-3dbefe0affad</a:Id>
<a:Price>
<Currency>USD</Currency>
<FinalPrice>97.24</FinalPrice>
<FinalPriceInSupplierCurrency>97.24</FinalPriceInSupplierCurrency>
<OriginalPrice>97.24</OriginalPrice>
<OriginalPriceInSupplierCurrency>97.24</OriginalPriceInSupplierCurrency>
<SupplierCurrency>USD</SupplierCurrency>
</a:Price>
<a:SupplierId>13</a:SupplierId>
<a:SupplierName>HBS</a:SupplierName>
<a:Transfers>
<a:Transfer>
<a:Date>2017-09-27T00:00:00</a:Date>
<a:DropoffLocation xmlns:b="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<b:string>Hilton NY JFK Airport</b:string>
</a:DropoffLocation>
<a:EstimatedDuration>0</a:EstimatedDuration>
<a:Facilities xmlns:b="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<b:string>Exclusive ride for you</b:string>
<b:string>Door to door service</b:string>
<b:string>Available 24/7</b:string>
<b:string>Meet & Greet service</b:string>
<b:string>1 item of hand baggage allowed per person</b:string>
<b:string>1 piece of baggage allowed per person ( max.dimensions 158cm) length+width+height=158cm</b:string>
</a:Facilities>
<a:PickUpRemarks>Domestic Flights: Before you collect your luggage a staff member will be waiting for you at the baggage claim area with a sign with your name on it. International Flights: Once you have cleared customs a staff member will be waiting for you outside customs area with a sign with your name on it. If you are unable to locate the driver, please call 1-718-442-4636or 1-800-542-1584 . Languages spoken at the call centre: English.</a:PickUpRemarks>
<a:PickupLocation xmlns:b="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<b:string>New York, John F Kennedy Int. Airport</b:string>
</a:PickupLocation>
<a:Remarks xmlns:b="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<b:string>EXCESS LUGGAGE - If you arrive at the destination with an excess of luggage, you will have to pay an additional charge for the extra undeclared weight. </b:string>
<b:string>CAN'T FIND DRIVER - In the event of being unable to locate the driver, please call the emergency number indicated in this voucher.</b:string>
<b:string>VOUCHER - Remember to bring this voucher and valid photo ID with you</b:string>
<b:string>BABY SEATS - If you are travelling with children it is required to use a child safety seat. Please note that it´s the parent or guardian reponsability to bring one, in the case of not complying with this requirement the service may not be provided.</b:string>
<b:string>Domestic: Total Driver Waiting Time 60 min. - Domestic Arrivals: For this service, the driver will wait a total of 60 min. (instead of the standard driver waiting time mentioned)</b:string>
<b:string>International: Total Driver waiting time 120 min. - International Arrivals: For this service, the driver will wait a total of 120 min. (instead of the standard driver waiting time mentioned)</b:string>
<b:string>Exclusive ride for you - </b:string>
<b:string>Door to door service - </b:string>
<b:string>Available 24/7 - </b:string>
<b:string>Meet & Greet service - </b:string>
<b:string>1 item of hand baggage allowed per person - </b:string>
<b:string>1 piece of baggage allowed per person ( max.dimensions 158cm) length+width+height=158cm - </b:string>
</a:Remarks>
<a:ServiceClass>Private</a:ServiceClass>
<a:ServiceType>Luxury</a:ServiceType>
<a:Time>PT0S</a:Time>
<a:VehicleType>Sedan - Portuguese</a:VehicleType>
</a:Transfer>
</a:Transfers>
</a:TransferPackage>
<a:TransferPackage>
<a:CancellationPolicies i:nil="true"/>
<a:Id>e857543b-d8c5-46a6-b9d6-77269268477f</a:Id>
<a:Price>
<Currency>USD</Currency>
<FinalPrice>207.18</FinalPrice>
<FinalPriceInSupplierCurrency>207.18</FinalPriceInSupplierCurrency>
<OriginalPrice>207.18</OriginalPrice>
<OriginalPriceInSupplierCurrency>207.18</OriginalPriceInSupplierCurrency>
<SupplierCurrency>USD</SupplierCurrency>
</a:Price>
<a:SupplierId>13</a:SupplierId>
<a:SupplierName>HBS</a:SupplierName>
<a:Transfers>
<a:Transfer>
<a:Date>2017-09-27T00:00:00</a:Date>
<a:DropoffLocation xmlns:b="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<b:string>Hilton NY JFK Airport</b:string>
</a:DropoffLocation>
<a:EstimatedDuration>0</a:EstimatedDuration>
<a:Facilities xmlns:b="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<b:string>Exclusive ride for you</b:string>
<b:string>Door to door service</b:string>
<b:string>Available 24/7</b:string>
<b:string>Meet & Greet service</b:string>
<b:string>1 item of hand baggage allowed per person</b:string>
</a:Facilities>
<a:PickUpRemarks>Domestic Flights: Before you collect your luggage a staff member will be waiting for you at the baggage claim area with a sign with your name on it. International Flights: Once you have cleared customs a staff member will be waiting for you outside customs area with a sign with your name on it. If you are unable to locate the driver, please call 1-718-442-4636or 1-800-542-1584 . Languages spoken at the call centre: English.</a:PickUpRemarks>
<a:PickupLocation xmlns:b="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<b:string>New York, John F Kennedy Int. Airport</b:string>
</a:PickupLocation>
<a:Remarks xmlns:b="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<b:string>EXCESS LUGGAGE - If you arrive at the destination with an excess of luggage, you will have to pay an additional charge for the extra undeclared weight. </b:string>
<b:string>CAN'T FIND DRIVER - In the event of being unable to locate the driver, please call the emergency number indicated in this voucher.</b:string>
<b:string>VOUCHER - Remember to bring this voucher and valid photo ID with you</b:string>
<b:string>BABY SEATS - If you are travelling with children it is required to use a child safety seat. Please note that it´s the parent or guardian reponsability to bring one, in the case of not complying with this requirement the service may not be provided.</b:string>
<b:string>Domestic: Total Driver Waiting Time 60 min. - Domestic Arrivals: For this service, the driver will wait a total of 60 min. (instead of the standard driver waiting time mentioned)</b:string>
<b:string>International: Total Driver waiting time 120 min. - International Arrivals: For this service, the driver will wait a total of 120 min. (instead of the standard driver waiting time mentioned)</b:string>
<b:string>Exclusive ride for you - </b:string>
<b:string>Door to door service - </b:string>
<b:string>Available 24/7 - </b:string>
<b:string>Meet & Greet service - </b:string>
<b:string>1 item of hand baggage allowed per person - </b:string>
</a:Remarks>
<a:ServiceClass>Private</a:ServiceClass>
<a:ServiceType>Luxury</a:ServiceType>
<a:Time>PT0S</a:Time>
<a:VehicleType>Limousine - Portuguese</a:VehicleType>
</a:Transfer>
</a:Transfers>
</a:TransferPackage>
<a:TransferPackage>
<a:CancellationPolicies i:nil="true"/>
<a:Id>d55b076c-ee33-4fce-b44d-e5b38c34adf9</a:Id>
<a:Price>
<Currency>USD</Currency>
<FinalPrice>139.23</FinalPrice>
<FinalPriceInSupplierCurrency>139.23</FinalPriceInSupplierCurrency>
<OriginalPrice>139.23</OriginalPrice>
<OriginalPriceInSupplierCurrency>139.23</OriginalPriceInSupplierCurrency>
<SupplierCurrency>USD</SupplierCurrency>
</a:Price>
<a:SupplierId>13</a:SupplierId>
<a:SupplierName>HBS</a:SupplierName>
<a:Transfers>
<a:Transfer>
<a:Date>2017-09-27T00:00:00</a:Date>
<a:DropoffLocation xmlns:b="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<b:string>Hilton NY JFK Airport</b:string>
</a:DropoffLocation>
<a:EstimatedDuration>0</a:EstimatedDuration>
<a:Facilities xmlns:b="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<b:string>Exclusive ride for you</b:string>
<b:string>Door to door service</b:string>
<b:string>Available 24/7</b:string>
<b:string>Meet & Greet service</b:string>
<b:string>1 item of hand baggage allowed per person</b:string>
<b:string>1 piece of baggage allowed per person ( max.dimensions 158cm) length+width+height=158cm</b:string>
</a:Facilities>
<a:PickUpRemarks>Domestic Flights: Before you collect your luggage a staff member will be waiting for you at the baggage claim area with a sign with your name on it. International Flights: Once you have cleared customs a staff member will be waiting for you outside customs area with a sign with your name on it. If you are unable to locate the driver, please call 1-718-442-4636or 1-800-542-1584 . Languages spoken at the call centre: English.</a:PickUpRemarks>
<a:PickupLocation xmlns:b="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<b:string>New York, John F Kennedy Int. Airport</b:string>
</a:PickupLocation>
<a:Remarks xmlns:b="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<b:string>EXCESS LUGGAGE - If you arrive at the destination with an excess of luggage, you will have to pay an additional charge for the extra undeclared weight. </b:string>
<b:string>CAN'T FIND DRIVER - In the event of being unable to locate the driver, please call the emergency number indicated in this voucher.</b:string>
<b:string>VOUCHER - Remember to bring this voucher and valid photo ID with you</b:string>
<b:string>BABY SEATS - If you are travelling with children it is required to use a child safety seat. Please note that it´s the parent or guardian reponsability to bring one, in the case of not complying with this requirement the service may not be provided.</b:string>
<b:string>Domestic: Total Driver Waiting Time 60 min. - Domestic Arrivals: For this service, the driver will wait a total of 60 min. (instead of the standard driver waiting time mentioned)</b:string>
<b:string>International: Total Driver waiting time 120 min. - International Arrivals: For this service, the driver will wait a total of 120 min. (instead of the standard driver waiting time mentioned)</b:string>
<b:string>Exclusive ride for you - </b:string>
<b:string>Door to door service - </b:string>
<b:string>Available 24/7 - </b:string>
<b:string>Meet & Greet service - </b:string>
<b:string>1 item of hand baggage allowed per person - </b:string>
<b:string>1 piece of baggage allowed per person ( max.dimensions 158cm) length+width+height=158cm - </b:string>
</a:Remarks>
<a:ServiceClass>Private</a:ServiceClass>
<a:ServiceType>Luxury</a:ServiceType>
<a:Time>PT0S</a:Time>
<a:VehicleType>SUV - Portuguese</a:VehicleType>
</a:Transfer>
</a:Transfers>
</a:TransferPackage>
<a:TransferPackage>
<a:CancellationPolicies i:nil="true"/>
<a:Id>4282fcdf-6169-41eb-ade5-6e2a48c9c29f</a:Id>
<a:Price>
<Currency>USD</Currency>
<FinalPrice>207.18</FinalPrice>
<FinalPriceInSupplierCurrency>207.18</FinalPriceInSupplierCurrency>
<OriginalPrice>207.18</OriginalPrice>
<OriginalPriceInSupplierCurrency>207.18</OriginalPriceInSupplierCurrency>
<SupplierCurrency>USD</SupplierCurrency>
</a:Price>
<a:SupplierId>13</a:SupplierId>
<a:SupplierName>HBS</a:SupplierName>
<a:Transfers>
<a:Transfer>
<a:Date>2017-09-27T00:00:00</a:Date>
<a:DropoffLocation xmlns:b="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<b:string>Hilton NY JFK Airport</b:string>
</a:DropoffLocation>
<a:EstimatedDuration>0</a:EstimatedDuration>
<a:Facilities xmlns:b="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<b:string>Exclusive ride for you</b:string>
<b:string>Door to door service</b:string>
<b:string>Available 24/7</b:string>
<b:string>Meet & Greet service</b:string>
<b:string>1 item of hand baggage allowed per person</b:string>
<b:string>1 piece of baggage allowed per person ( max.dimensions 158cm) length+width+height=158cm</b:string>
</a:Facilities>
<a:PickUpRemarks>Domestic Flights: Before you collect your luggage a staff member will be waiting for you at the baggage claim area with a sign with your name on it. International Flights: Once you have cleared customs a staff member will be waiting for you outside customs area with a sign with your name on it. If you are unable to locate the driver, please call 1-718-442-4636or 1-800-542-1584 . Languages spoken at the call centre: English.</a:PickUpRemarks>
<a:PickupLocation xmlns:b="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<b:string>New York, John F Kennedy Int. Airport</b:string>
</a:PickupLocation>
<a:Remarks xmlns:b="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<b:string>EXCESS LUGGAGE - If you arrive at the destination with an excess of luggage, you will have to pay an additional charge for the extra undeclared weight. </b:string>
<b:string>CAN'T FIND DRIVER - In the event of being unable to locate the driver, please call the emergency number indicated in this voucher.</b:string>
<b:string>VOUCHER - Remember to bring this voucher and valid photo ID with you</b:string>
<b:string>BABY SEATS - If you are travelling with children it is required to use a child safety seat. Please note that it´s the parent or guardian reponsability to bring one, in the case of not complying with this requirement the service may not be provided.</b:string>
<b:string>Domestic: Total Driver Waiting Time 60 min. - Domestic Arrivals: For this service, the driver will wait a total of 60 min. (instead of the standard driver waiting time mentioned)</b:string>
<b:string>International: Total Driver waiting time 120 min. - International Arrivals: For this service, the driver will wait a total of 120 min. (instead of the standard driver waiting time mentioned)</b:string>
<b:string>Exclusive ride for you - </b:string>
<b:string>Door to door service - </b:string>
<b:string>Available 24/7 - </b:string>
<b:string>Meet & Greet service - </b:string>
<b:string>1 item of hand baggage allowed per person - </b:string>
<b:string>1 piece of baggage allowed per person ( max.dimensions 158cm) length+width+height=158cm - </b:string>
</a:Remarks>
<a:ServiceClass>Private</a:ServiceClass>
<a:ServiceType>Luxury</a:ServiceType>
<a:Time>PT0S</a:Time>
<a:VehicleType>Limousine</a:VehicleType>
</a:Transfer>
</a:Transfers>
</a:TransferPackage>
<a:TransferPackage>
<a:CancellationPolicies i:nil="true"/>
<a:Id>e33a5920-44df-49b5-b3f1-28e7e1f3776d</a:Id>
<a:Price>
<Currency>USD</Currency>
<FinalPrice>139.23</FinalPrice>
<FinalPriceInSupplierCurrency>139.23</FinalPriceInSupplierCurrency>
<OriginalPrice>139.23</OriginalPrice>
<OriginalPriceInSupplierCurrency>139.23</OriginalPriceInSupplierCurrency>
<SupplierCurrency>USD</SupplierCurrency>
</a:Price>
<a:SupplierId>13</a:SupplierId>
<a:SupplierName>HBS</a:SupplierName>
<a:Transfers>
<a:Transfer>
<a:Date>2017-09-27T00:00:00</a:Date>
<a:DropoffLocation xmlns:b="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<b:string>Hilton NY JFK Airport</b:string>
</a:DropoffLocation>
<a:EstimatedDuration>0</a:EstimatedDuration>
<a:Facilities xmlns:b="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<b:string>Exclusive ride for you</b:string>
<b:string>Door to door service</b:string>
<b:string>Available 24/7</b:string>
<b:string>Meet & Greet service</b:string>
<b:string>1 item of hand baggage allowed per person</b:string>
<b:string>1 piece of baggage allowed per person ( max.dimensions 158cm) length+width+height=158cm</b:string>
</a:Facilities>
<a:PickUpRemarks>Domestic Flights: Before you collect your luggage a staff member will be waiting for you at the baggage claim area with a sign with your name on it. International Flights: Once you have cleared customs a staff member will be waiting for you outside customs area with a sign with your name on it. If you are unable to locate the driver, please call 1-718-442-4636or 1-800-542-1584 . Languages spoken at the call centre: English.</a:PickUpRemarks>
<a:PickupLocation xmlns:b="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<b:string>New York, John F Kennedy Int. Airport</b:string>
</a:PickupLocation>
<a:Remarks xmlns:b="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<b:string>EXCESS LUGGAGE - If you arrive at the destination with an excess of luggage, you will have to pay an additional charge for the extra undeclared weight. </b:string>
<b:string>CAN'T FIND DRIVER - In the event of being unable to locate the driver, please call the emergency number indicated in this voucher.</b:string>
<b:string>VOUCHER - Remember to bring this voucher and valid photo ID with you</b:string>
<b:string>BABY SEATS - If you are travelling with children it is required to use a child safety seat. Please note that it´s the parent or guardian reponsability to bring one, in the case of not complying with this requirement the service may not be provided.</b:string>
<b:string>Domestic: Total Driver Waiting Time 60 min. - Domestic Arrivals: For this service, the driver will wait a total of 60 min. (instead of the standard driver waiting time mentioned)</b:string>
<b:string>International: Total Driver waiting time 120 min. - International Arrivals: For this service, the driver will wait a total of 120 min. (instead of the standard driver waiting time mentioned)</b:string>
<b:string>Exclusive ride for you - </b:string>
<b:string>Door to door service - </b:string>
<b:string>Available 24/7 - </b:string>
<b:string>Meet & Greet service - </b:string>
<b:string>1 item of hand baggage allowed per person - </b:string>
<b:string>1 piece of baggage allowed per person ( max.dimensions 158cm) length+width+height=158cm - </b:string>
</a:Remarks>
<a:ServiceClass>Private</a:ServiceClass>
<a:ServiceType>Luxury</a:ServiceType>
<a:Time>PT0S</a:Time>
<a:VehicleType>SUV</a:VehicleType>
</a:Transfer>
</a:Transfers>
</a:TransferPackage>
<a:TransferPackage>
<a:CancellationPolicies i:nil="true"/>
<a:Id>2958d821-3708-4c74-b040-6697e67e8cd9</a:Id>
<a:Price>
<Currency>USD</Currency>
<FinalPrice>139.23</FinalPrice>
<FinalPriceInSupplierCurrency>139.23</FinalPriceInSupplierCurrency>
<OriginalPrice>139.23</OriginalPrice>
<OriginalPriceInSupplierCurrency>139.23</OriginalPriceInSupplierCurrency>
<SupplierCurrency>USD</SupplierCurrency>
</a:Price>
<a:SupplierId>13</a:SupplierId>
<a:SupplierName>HBS</a:SupplierName>
<a:Transfers>
<a:Transfer>
<a:Date>2017-09-27T00:00:00</a:Date>
<a:DropoffLocation xmlns:b="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<b:string>Hilton NY JFK Airport</b:string>
</a:DropoffLocation>
<a:EstimatedDuration>0</a:EstimatedDuration>
<a:Facilities xmlns:b="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<b:string>Exclusive ride for you</b:string>
<b:string>Door to door service</b:string>
<b:string>Available 24/7</b:string>
<b:string>Meet & Greet service</b:string>
<b:string>1 item of hand baggage allowed per person</b:string>
<b:string>1 piece of baggage allowed per person ( max.dimensions 158cm) length+width+height=158cm</b:string>
</a:Facilities>
<a:PickUpRemarks>Domestic Flights: Before you collect your luggage a staff member will be waiting for you at the baggage claim area with a sign with your name on it. International Flights: Once you have cleared customs a staff member will be waiting for you outside customs area with a sign with your name on it. If you are unable to locate the driver, please call 1-718-442-4636or 1-800-542-1584 . Languages spoken at the call centre: English.</a:PickUpRemarks>
<a:PickupLocation xmlns:b="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<b:string>New York, John F Kennedy Int. Airport</b:string>
</a:PickupLocation>
<a:Remarks xmlns:b="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<b:string>EXCESS LUGGAGE - If you arrive at the destination with an excess of luggage, you will have to pay an additional charge for the extra undeclared weight. </b:string>
<b:string>CAN'T FIND DRIVER - In the event of being unable to locate the driver, please call the emergency number indicated in this voucher.</b:string>
<b:string>VOUCHER - Remember to bring this voucher and valid photo ID with you</b:string>
<b:string>BABY SEATS - If you are travelling with children it is required to use a child safety seat. Please note that it´s the parent or guardian reponsability to bring one, in the case of not complying with this requirement the service may not be provided.</b:string>
<b:string>Domestic: Total Driver Waiting Time 60 min. - Domestic Arrivals: For this service, the driver will wait a total of 60 min. (instead of the standard driver waiting time mentioned)</b:string>
<b:string>International: Total Driver waiting time 120 min. - International Arrivals: For this service, the driver will wait a total of 120 min. (instead of the standard driver waiting time mentioned)</b:string>
<b:string>Exclusive ride for you - </b:string>
<b:string>Door to door service - </b:string>
<b:string>Available 24/7 - </b:string>
<b:string>Meet & Greet service - </b:string>
<b:string>1 item of hand baggage allowed per person - </b:string>
<b:string>1 piece of baggage allowed per person ( max.dimensions 158cm) length+width+height=158cm - </b:string>
</a:Remarks>
<a:ServiceClass>Private</a:ServiceClass>
<a:ServiceType>Luxury</a:ServiceType>
<a:Time>PT0S</a:Time>
<a:VehicleType>SUV - Spanish</a:VehicleType>
</a:Transfer>
</a:Transfers>
</a:TransferPackage>
<a:TransferPackage>
<a:CancellationPolicies i:nil="true"/>
<a:Id>a7a63619-893f-4ad3-99f9-adc14b2e477e</a:Id>
<a:Price>
<Currency>USD</Currency>
<FinalPrice>207.18</FinalPrice>
<FinalPriceInSupplierCurrency>207.18</FinalPriceInSupplierCurrency>
<OriginalPrice>207.18</OriginalPrice>
<OriginalPriceInSupplierCurrency>207.18</OriginalPriceInSupplierCurrency>
<SupplierCurrency>USD</SupplierCurrency>
</a:Price>
<a:SupplierId>13</a:SupplierId>
<a:SupplierName>HBS</a:SupplierName>
<a:Transfers>
<a:Transfer>
<a:Date>2017-09-27T00:00:00</a:Date>
<a:DropoffLocation xmlns:b="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<b:string>Hilton NY JFK Airport</b:string>
</a:DropoffLocation>
<a:EstimatedDuration>0</a:EstimatedDuration>
<a:Facilities xmlns:b="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<b:string>Exclusive ride for you</b:string>
<b:string>Door to door service</b:string>
<b:string>Available 24/7</b:string>
<b:string>Meet & Greet service</b:string>
<b:string>1 item of hand baggage allowed per person</b:string>
<b:string>1 piece of baggage allowed per person ( max.dimensions 158cm) length+width+height=158cm</b:string>
</a:Facilities>
<a:PickUpRemarks>Domestic Flights: Before you collect your luggage a staff member will be waiting for you at the baggage claim area with a sign with your name on it. International Flights: Once you have cleared customs a staff member will be waiting for you outside customs area with a sign with your name on it. If you are unable to locate the driver, please call 1-718-442-4636or 1-800-542-1584 . Languages spoken at the call centre: English.</a:PickUpRemarks>
<a:PickupLocation xmlns:b="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<b:string>New York, John F Kennedy Int. Airport</b:string>
</a:PickupLocation>
<a:Remarks xmlns:b="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<b:string>EXCESS LUGGAGE - If you arrive at the destination with an excess of luggage, you will have to pay an additional charge for the extra undeclared weight. </b:string>
<b:string>CAN'T FIND DRIVER - In the event of being unable to locate the driver, please call the emergency number indicated in this voucher.</b:string>
<b:string>VOUCHER - Remember to bring this voucher and valid photo ID with you</b:string>
<b:string>BABY SEATS - If you are travelling with children it is required to use a child safety seat. Please note that it´s the parent or guardian reponsability to bring one, in the case of not complying with this requirement the service may not be provided.</b:string>
<b:string>Domestic: Total Driver Waiting Time 60 min. - Domestic Arrivals: For this service, the driver will wait a total of 60 min. (instead of the standard driver waiting time mentioned)</b:string>
<b:string>International: Total Driver waiting time 120 min. - International Arrivals: For this service, the driver will wait a total of 120 min. (instead of the standard driver waiting time mentioned)</b:string>
<b:string>Exclusive ride for you - </b:string>
<b:string>Door to door service - </b:string>
<b:string>Available 24/7 - </b:string>
<b:string>Meet & Greet service - </b:string>
<b:string>1 item of hand baggage allowed per person - </b:string>
<b:string>1 piece of baggage allowed per person ( max.dimensions 158cm) length+width+height=158cm - </b:string>
</a:Remarks>
<a:ServiceClass>Private</a:ServiceClass>
<a:ServiceType>Luxury</a:ServiceType>
<a:Time>PT0S</a:Time>
<a:VehicleType>Limousine - Spanish</a:VehicleType>
</a:Transfer>
</a:Transfers>
</a:TransferPackage>
<a:TransferPackage>
<a:CancellationPolicies i:nil="true"/>
<a:Id>dac5ca6a-d38c-451d-bebe-5b81a3516201</a:Id>
<a:Price>
<Currency>USD</Currency>
<FinalPrice>97.24</FinalPrice>
<FinalPriceInSupplierCurrency>97.24</FinalPriceInSupplierCurrency>
<OriginalPrice>97.24</OriginalPrice>
<OriginalPriceInSupplierCurrency>97.24</OriginalPriceInSupplierCurrency>
<SupplierCurrency>USD</SupplierCurrency>
</a:Price>
<a:SupplierId>13</a:SupplierId>
<a:SupplierName>HBS</a:SupplierName>
<a:Transfers>
<a:Transfer>
<a:Date>2017-09-27T00:00:00</a:Date>
<a:DropoffLocation xmlns:b="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<b:string>Hilton NY JFK Airport</b:string>
</a:DropoffLocation>
<a:EstimatedDuration>0</a:EstimatedDuration>
<a:Facilities xmlns:b="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<b:string>Exclusive ride for you</b:string>
<b:string>Door to door service</b:string>
<b:string>Available 24/7</b:string>
<b:string>Meet & Greet service</b:string>
<b:string>1 item of hand baggage allowed per person</b:string>
<b:string>1 piece of baggage allowed per person ( max.dimensions 158cm) length+width+height=158cm</b:string>
</a:Facilities>
<a:PickUpRemarks>Domestic Flights: Before you collect your luggage a staff member will be waiting for you at the baggage claim area with a sign with your name on it. International Flights: Once you have cleared customs a staff member will be waiting for you outside customs area with a sign with your name on it. If you are unable to locate the driver, please call 1-718-442-4636or 1-800-542-1584 . Languages spoken at the call centre: English.</a:PickUpRemarks>
<a:PickupLocation xmlns:b="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<b:string>New York, John F Kennedy Int. Airport</b:string>
</a:PickupLocation>
<a:Remarks xmlns:b="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<b:string>EXCESS LUGGAGE - If you arrive at the destination with an excess of luggage, you will have to pay an additional charge for the extra undeclared weight. </b:string>
<b:string>CAN'T FIND DRIVER - In the event of being unable to locate the driver, please call the emergency number indicated in this voucher.</b:string>
<b:string>VOUCHER - Remember to bring this voucher and valid photo ID with you</b:string>
<b:string>BABY SEATS - If you are travelling with children it is required to use a child safety seat. Please note that it´s the parent or guardian reponsability to bring one, in the case of not complying with this requirement the service may not be provided.</b:string>
<b:string>Domestic: Total Driver Waiting Time 60 min. - Domestic Arrivals: For this service, the driver will wait a total of 60 min. (instead of the standard driver waiting time mentioned)</b:string>
<b:string>International: Total Driver waiting time 120 min. - International Arrivals: For this service, the driver will wait a total of 120 min. (instead of the standard driver waiting time mentioned)</b:string>
<b:string>Exclusive ride for you - </b:string>
<b:string>Door to door service - </b:string>
<b:string>Available 24/7 - </b:string>
<b:string>Meet & Greet service - </b:string>
<b:string>1 item of hand baggage allowed per person - </b:string>
<b:string>1 piece of baggage allowed per person ( max.dimensions 158cm) length+width+height=158cm - </b:string>
</a:Remarks>
<a:ServiceClass>Private</a:ServiceClass>
<a:ServiceType>Luxury</a:ServiceType>
<a:Time>PT0S</a:Time>
<a:VehicleType>Sedan - Spanish</a:VehicleType>
</a:Transfer>
</a:Transfers>
</a:TransferPackage>
<a:TransferPackage>
<a:CancellationPolicies i:nil="true"/>
<a:Id>42710bf2-3b71-4f52-92c4-cec3b7ca3e1e</a:Id>
<a:Price>
<Currency>USD</Currency>
<FinalPrice>284.93</FinalPrice>
<FinalPriceInSupplierCurrency>284.93</FinalPriceInSupplierCurrency>
<OriginalPrice>284.93</OriginalPrice>
<OriginalPriceInSupplierCurrency>284.93</OriginalPriceInSupplierCurrency>
<SupplierCurrency>USD</SupplierCurrency>
</a:Price>
<a:SupplierId>13</a:SupplierId>
<a:SupplierName>HBS</a:SupplierName>
<a:Transfers>
<a:Transfer>
<a:Date>2017-09-27T00:00:00</a:Date>
<a:DropoffLocation xmlns:b="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<b:string>Hilton NY JFK Airport</b:string>
</a:DropoffLocation>
<a:EstimatedDuration>0</a:EstimatedDuration>
<a:Facilities xmlns:b="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<b:string>Exclusive ride for you</b:string>
<b:string>Door to door service</b:string>
<b:string>Available 24/7</b:string>
<b:string>Meet & Greet service</b:string>
<b:string>1 item of hand baggage allowed per person</b:string>
<b:string>1 piece of baggage allowed per person ( max.dimensions 158cm) length+width+height=158cm</b:string>
</a:Facilities>
<a:PickUpRemarks>Domestic Flights: Before you collect your luggage a staff member will be waiting for you at the baggage claim area with a sign with your name on it. International Flights: Once you have cleared customs a staff member will be waiting for you outside customs area with a sign with your name on it. If you are unable to locate the driver, please call 1-407-254-0474 or 1-866-435-5686 . Languages spoken at the call centre: English.</a:PickUpRemarks>
<a:PickupLocation xmlns:b="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<b:string>New York, John F Kennedy Int. Airport</b:string>
</a:PickupLocation>
<a:Remarks xmlns:b="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<b:string>EXCESS LUGGAGE - If you arrive at the destination with an excess of luggage, you will have to pay an additional charge for the extra undeclared weight. </b:string>
<b:string>Domestic: Total Driver Waiting Time 60 min. - Domestic Arrivals: For this service, the driver will wait a total of 60 min. (instead of the standard driver waiting time mentioned)</b:string>
<b:string>International: Total Driver waiting time 120 min. - International Arrivals: For this service, the driver will wait a total of 120 min. (instead of the standard driver waiting time mentioned)</b:string>
<b:string>CAN'T FIND DRIVER - In the event of being unable to locate the driver, please call the emergency number indicated in this voucher.</b:string>
<b:string>VOUCHER - Remember to bring this voucher and valid photo ID with you</b:string>
<b:string>BABY SEATS - If you are travelling with children it is required to use a child safety seat. Please note that it´s the parent or guardian reponsability to bring one, in the case of not complying with this requirement the service may not be provided.</b:string>
<b:string>CHILDBOOSTER / BABY SEAT - Child car seats and boosters are not included unless specified in your booking and can carry an extra cost. Should you need to book them, please contact your point of sale prior to travelling.</b:string>
<b:string>Exclusive ride for you - </b:string>
<b:string>Door to door service - </b:string>
<b:string>Available 24/7 - </b:string>
<b:string>Meet & Greet service - </b:string>
<b:string>1 item of hand baggage allowed per person - </b:string>
<b:string>1 piece of baggage allowed per person ( max.dimensions 158cm) length+width+height=158cm - </b:string>
</a:Remarks>
<a:ServiceClass>Private</a:ServiceClass>
<a:ServiceType>Luxury</a:ServiceType>
<a:Time>PT0S</a:Time>
<a:VehicleType>SUV-French</a:VehicleType>
</a:Transfer>
</a:Transfers>
</a:TransferPackage>
<a:TransferPackage>
<a:CancellationPolicies i:nil="true"/>
<a:Id>14b56673-75e6-4b15-9fde-e5a3cda32a1f</a:Id>
<a:Price>
<Currency>USD</Currency>
<FinalPrice>326.6</FinalPrice>
<FinalPriceInSupplierCurrency>326.6</FinalPriceInSupplierCurrency>
<OriginalPrice>326.6</OriginalPrice>
<OriginalPriceInSupplierCurrency>326.6</OriginalPriceInSupplierCurrency>
<SupplierCurrency>USD</SupplierCurrency>
</a:Price>
<a:SupplierId>13</a:SupplierId>
<a:SupplierName>HBS</a:SupplierName>
<a:Transfers>
<a:Transfer>
<a:Date>2017-09-27T00:00:00</a:Date>
<a:DropoffLocation xmlns:b="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<b:string>Hilton NY JFK Airport</b:string>
</a:DropoffLocation>
<a:EstimatedDuration>0</a:EstimatedDuration>
<a:Facilities xmlns:b="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<b:string>Exclusive ride for you</b:string>
<b:string>Door to door service</b:string>
<b:string>Available 24/7</b:string>
<b:string>Meet & Greet service</b:string>
<b:string>1 item of hand baggage allowed per person</b:string>
<b:string>1 piece of baggage allowed per person ( max.dimensions 158cm) length+width+height=158cm</b:string>
</a:Facilities>
<a:PickUpRemarks>Domestic Flights: Before you collect your luggage a staff member will be waiting for you at the baggage claim area with a sign with your name on it. International Flights: Once you have cleared customs a staff member will be waiting for you outside customs area with a sign with your name on it. If you are unable to locate the driver, please call 1-407-254-0474 or 1-866-435-5686 . Languages spoken at the call centre: English.</a:PickUpRemarks>
<a:PickupLocation xmlns:b="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<b:string>New York, John F Kennedy Int. Airport</b:string>
</a:PickupLocation>
<a:Remarks xmlns:b="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<b:string>EXCESS LUGGAGE - If you arrive at the destination with an excess of luggage, you will have to pay an additional charge for the extra undeclared weight. </b:string>
<b:string>Domestic: Total Driver Waiting Time 60 min. - Domestic Arrivals: For this service, the driver will wait a total of 60 min. (instead of the standard driver waiting time mentioned)</b:string>
<b:string>International: Total Driver waiting time 120 min. - International Arrivals: For this service, the driver will wait a total of 120 min. (instead of the standard driver waiting time mentioned)</b:string>
<b:string>CAN'T FIND DRIVER - In the event of being unable to locate the driver, please call the emergency number indicated in this voucher.</b:string>
<b:string>VOUCHER - Remember to bring this voucher and valid photo ID with you</b:string>
<b:string>BABY SEATS - If you are travelling with children it is required to use a child safety seat. Please note that it´s the parent or guardian reponsability to bring one, in the case of not complying with this requirement the service may not be provided.</b:string>
<b:string>CHILDBOOSTER / BABY SEAT - Child car seats and boosters are not included unless specified in your booking and can carry an extra cost. Should you need to book them, please contact your point of sale prior to travelling.</b:string>
<b:string>Exclusive ride for you - </b:string>
<b:string>Door to door service - </b:string>
<b:string>Available 24/7 - </b:string>
<b:string>Meet & Greet service - </b:string>
<b:string>1 item of hand baggage allowed per person - </b:string>
<b:string>1 piece of baggage allowed per person ( max.dimensions 158cm) length+width+height=158cm - </b:string>
</a:Remarks>
<a:ServiceClass>Private</a:ServiceClass>
<a:ServiceType>Luxury</a:ServiceType>
<a:Time>PT0S</a:Time>
<a:VehicleType>Limousine - French</a:VehicleType>
</a:Transfer>
</a:Transfers>
</a:TransferPackage>
<a:TransferPackage>
<a:CancellationPolicies i:nil="true"/>
<a:Id>6ade97a5-2654-4026-a52c-6a5d44a15224</a:Id>
<a:Price>
<Currency>USD</Currency>
<FinalPrice>284.93</FinalPrice>
<FinalPriceInSupplierCurrency>284.93</FinalPriceInSupplierCurrency>
<OriginalPrice>284.93</OriginalPrice>
<OriginalPriceInSupplierCurrency>284.93</OriginalPriceInSupplierCurrency>
<SupplierCurrency>USD</SupplierCurrency>
</a:Price>
<a:SupplierId>13</a:SupplierId>
<a:SupplierName>HBS</a:SupplierName>
<a:Transfers>
<a:Transfer>
<a:Date>2017-09-27T00:00:00</a:Date>
<a:DropoffLocation xmlns:b="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<b:string>Hilton NY JFK Airport</b:string>
</a:DropoffLocation>
<a:EstimatedDuration>0</a:EstimatedDuration>
<a:Facilities xmlns:b="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<b:string>Exclusive ride for you</b:string>
<b:string>Door to door service</b:string>
<b:string>Available 24/7</b:string>
<b:string>Meet & Greet service</b:string>
<b:string>1 item of hand baggage allowed per person</b:string>
</a:Facilities>
<a:PickUpRemarks>Domestic Flights: Before you collect your luggage a staff member will be waiting for you at the baggage claim area with a sign with your name on it. International Flights: Once you have cleared customs a staff member will be waiting for you outside customs area with a sign with your name on it. If you are unable to locate the driver, please call 1-407-254-0474 or 1-866-435-5686 . Languages spoken at the call centre: English.</a:PickUpRemarks>
<a:PickupLocation xmlns:b="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<b:string>New York, John F Kennedy Int. Airport</b:string>
</a:PickupLocation>
<a:Remarks xmlns:b="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<b:string>EXCESS LUGGAGE - If you arrive at the destination with an excess of luggage, you will have to pay an additional charge for the extra undeclared weight. </b:string>
<b:string>Domestic: Total Driver Waiting Time 60 min. - Domestic Arrivals: For this service, the driver will wait a total of 60 min. (instead of the standard driver waiting time mentioned)</b:string>
<b:string>International: Total Driver waiting time 120 min. - International Arrivals: For this service, the driver will wait a total of 120 min. (instead of the standard driver waiting time mentioned)</b:string>
<b:string>CAN'T FIND DRIVER - In the event of being unable to locate the driver, please call the emergency number indicated in this voucher.</b:string>
<b:string>VOUCHER - Remember to bring this voucher and valid photo ID with you</b:string>
<b:string>BABY SEATS - If you are travelling with children it is required to use a child safety seat. Please note that it´s the parent or guardian reponsability to bring one, in the case of not complying with this requirement the service may not be provided.</b:string>
<b:string>CHILDBOOSTER / BABY SEAT - Child car seats and boosters are not included unless specified in your booking and can carry an extra cost. Should you need to book them, please contact your point of sale prior to travelling.</b:string>
<b:string>Exclusive ride for you - </b:string>
<b:string>Door to door service - </b:string>
<b:string>Available 24/7 - </b:string>
<b:string>Meet & Greet service - </b:string>
<b:string>1 item of hand baggage allowed per person - </b:string>
</a:Remarks>
<a:ServiceClass>Private</a:ServiceClass>
<a:ServiceType>Premium</a:ServiceType>
<a:Time>PT0S</a:Time>
<a:VehicleType>Minivan extra luggage</a:VehicleType>
</a:Transfer>
</a:Transfers>
</a:TransferPackage>
<a:TransferPackage>
<a:CancellationPolicies i:nil="true"/>
<a:Id>c1d2e519-06a6-4d98-ac48-5f6420be0f0d</a:Id>
<a:Price>
<Currency>USD</Currency>
<FinalPrice>284.93</FinalPrice>
<FinalPriceInSupplierCurrency>284.93</FinalPriceInSupplierCurrency>
<OriginalPrice>284.93</OriginalPrice>
<OriginalPriceInSupplierCurrency>284.93</OriginalPriceInSupplierCurrency>
<SupplierCurrency>USD</SupplierCurrency>
</a:Price>
<a:SupplierId>13</a:SupplierId>
<a:SupplierName>HBS</a:SupplierName>
<a:Transfers>
<a:Transfer>
<a:Date>2017-09-27T00:00:00</a:Date>
<a:DropoffLocation xmlns:b="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<b:string>Hilton NY JFK Airport</b:string>
</a:DropoffLocation>
<a:EstimatedDuration>0</a:EstimatedDuration>
<a:Facilities xmlns:b="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<b:string>Exclusive ride for you</b:string>
<b:string>Door to door service</b:string>
<b:string>Available 24/7</b:string>
<b:string>Meet & Greet service</b:string>
<b:string>1 item of hand baggage allowed per person</b:string>
<b:string>1 piece of baggage allowed per person ( max.dimensions 158cm) length+width+height=158cm</b:string>
</a:Facilities>
<a:PickUpRemarks>Domestic Flights: Before you collect your luggage a staff member will be waiting for you at the baggage claim area with a sign with your name on it. International Flights: Once you have cleared customs a staff member will be waiting for you outside customs area with a sign with your name on it. If you are unable to locate the driver, please call 1-407-254-0474 or 1-866-435-5686 . Languages spoken at the call centre: English.</a:PickUpRemarks>
<a:PickupLocation xmlns:b="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<b:string>New York, John F Kennedy Int. Airport</b:string>
</a:PickupLocation>
<a:Remarks xmlns:b="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<b:string>EXCESS LUGGAGE - If you arrive at the destination with an excess of luggage, you will have to pay an additional charge for the extra undeclared weight. </b:string>
<b:string>Domestic: Total Driver Waiting Time 60 min. - Domestic Arrivals: For this service, the driver will wait a total of 60 min. (instead of the standard driver waiting time mentioned)</b:string>
<b:string>International: Total Driver waiting time 120 min. - International Arrivals: For this service, the driver will wait a total of 120 min. (instead of the standard driver waiting time mentioned)</b:string>
<b:string>CAN'T FIND DRIVER - In the event of being unable to locate the driver, please call the emergency number indicated in this voucher.</b:string>
<b:string>VOUCHER - Remember to bring this voucher and valid photo ID with you</b:string>
<b:string>BABY SEATS - If you are travelling with children it is required to use a child safety seat. Please note that it´s the parent or guardian reponsability to bring one, in the case of not complying with this requirement the service may not be provided.</b:string>
<b:string>CHILDBOOSTER / BABY SEAT - Child car seats and boosters are not included unless specified in your booking and can carry an extra cost. Should you need to book them, please contact your point of sale prior to travelling.</b:string>
<b:string>Exclusive ride for you - </b:string>
<b:string>Door to door service - </b:string>
<b:string>Available 24/7 - </b:string>
<b:string>Meet & Greet service - </b:string>
<b:string>1 item of hand baggage allowed per person - </b:string>
<b:string>1 piece of baggage allowed per person ( max.dimensions 158cm) length+width+height=158cm - </b:string>
</a:Remarks>
<a:ServiceClass>Private</a:ServiceClass>
<a:ServiceType>Luxury</a:ServiceType>
<a:Time>PT0S</a:Time>
<a:VehicleType>Minivan - French</a:VehicleType>
</a:Transfer>
</a:Transfers>
</a:TransferPackage>
<a:TransferPackage>
<a:CancellationPolicies i:nil="true"/>
<a:Id>4e42f3be-90ac-4657-a0fe-d4c337d29d47</a:Id>
<a:Price>
<Currency>USD</Currency>
<FinalPrice>158.61</FinalPrice>
<FinalPriceInSupplierCurrency>158.61</FinalPriceInSupplierCurrency>
<OriginalPrice>158.61</OriginalPrice>
<OriginalPriceInSupplierCurrency>158.61</OriginalPriceInSupplierCurrency>
<SupplierCurrency>USD</SupplierCurrency>
</a:Price>
<a:SupplierId>13</a:SupplierId>
<a:SupplierName>HBS</a:SupplierName>
<a:Transfers>
<a:Transfer>
<a:Date>2017-09-27T00:00:00</a:Date>
<a:DropoffLocation xmlns:b="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<b:string>Hilton NY JFK Airport</b:string>
</a:DropoffLocation>
<a:EstimatedDuration>0</a:EstimatedDuration>
<a:Facilities xmlns:b="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<b:string>Exclusive ride for you</b:string>
<b:string>Door to door service</b:string>
<b:string>Available 24/7</b:string>
<b:string>Meet & Greet service</b:string>
<b:string>1 item of hand baggage allowed per person</b:string>
</a:Facilities>
<a:PickUpRemarks>Domestic Flights: Before you collect your luggage a staff member will be waiting for you at the baggage claim area with a sign with your name on it. International Flights: Once you have cleared customs a staff member will be waiting for you outside customs area with a sign with your name on it. If you are unable to locate the driver, please call 1-407-254-0474 or 1-866-435-5686 . Languages spoken at the call centre: English.</a:PickUpRemarks>
<a:PickupLocation xmlns:b="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<b:string>New York, John F Kennedy Int. Airport</b:string>
</a:PickupLocation>
<a:Remarks xmlns:b="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<b:string>EXCESS LUGGAGE - If you arrive at the destination with an excess of luggage, you will have to pay an additional charge for the extra undeclared weight. </b:string>
<b:string>Domestic: Total Driver Waiting Time 60 min. - Domestic Arrivals: For this service, the driver will wait a total of 60 min. (instead of the standard driver waiting time mentioned)</b:string>
<b:string>International: Total Driver waiting time 120 min. - International Arrivals: For this service, the driver will wait a total of 120 min. (instead of the standard driver waiting time mentioned)</b:string>
<b:string>CAN'T FIND DRIVER - In the event of being unable to locate the driver, please call the emergency number indicated in this voucher.</b:string>
<b:string>VOUCHER - Remember to bring this voucher and valid photo ID with you</b:string>
<b:string>BABY SEATS - If you are travelling with children it is required to use a child safety seat. Please note that it´s the parent or guardian reponsability to bring one, in the case of not complying with this requirement the service may not be provided.</b:string>
<b:string>CHILDBOOSTER / BABY SEAT - Child car seats and boosters are not included unless specified in your booking and can carry an extra cost. Should you need to book them, please contact your point of sale prior to travelling.</b:string>
<b:string>Exclusive ride for you - </b:string>
<b:string>Door to door service - </b:string>
<b:string>Available 24/7 - </b:string>
<b:string>Meet & Greet service - </b:string>
<b:string>1 item of hand baggage allowed per person - </b:string>
</a:Remarks>
<a:ServiceClass>Private</a:ServiceClass>
<a:ServiceType>Luxury</a:ServiceType>
<a:Time>PT0S</a:Time>
<a:VehicleType>Sedan - French</a:VehicleType>
</a:Transfer>
</a:Transfers>
</a:TransferPackage>
<a:TransferPackage>
<a:CancellationPolicies i:nil="true"/>
<a:Id>04435d90-f5c7-4ac6-be32-9d91df2e4943</a:Id>
<a:Price>
<Currency>USD</Currency>
<FinalPrice>76.08</FinalPrice>
<FinalPriceInSupplierCurrency>76.08</FinalPriceInSupplierCurrency>
<OriginalPrice>76.08</OriginalPrice>
<OriginalPriceInSupplierCurrency>76.08</OriginalPriceInSupplierCurrency>
<SupplierCurrency>USD</SupplierCurrency>
</a:Price>
<a:SupplierId>13</a:SupplierId>
<a:SupplierName>HBS</a:SupplierName>
<a:Transfers>
<a:Transfer>
<a:Date>2017-09-27T00:00:00</a:Date>
<a:DropoffLocation xmlns:b="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<b:string>Hilton NY JFK Airport</b:string>
</a:DropoffLocation>
<a:EstimatedDuration>0</a:EstimatedDuration>
<a:Facilities xmlns:b="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<b:string>Superior service</b:string>
<b:string>Maximum</b:string>
<b:string>1 item of hand baggage allowed per person</b:string>
<b:string>1 piece of baggage allowed per person ( max.dimensions 158cm) length+width+height=158cm</b:string>
</a:Facilities>
<a:PickUpRemarks>Domestic Flights: Before you collect your luggage a staff member will be waiting for you at the baggage claim area with a sign with your name on it. International Flights: Once you have cleared customs a staff member will be waiting for you outside customs area with a sign with your name on it. If you are unable to locate the driver, please call 1-718-442-4636or 1-800-542-1584 . Languages spoken at the call centre: English.</a:PickUpRemarks>
<a:PickupLocation xmlns:b="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<b:string>New York, John F Kennedy Int. Airport</b:string>
</a:PickupLocation>
<a:Remarks xmlns:b="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<b:string>CAN'T FIND DRIVER - In the event of being unable to locate the driver, please call the emergency number indicated in this voucher.</b:string>
<b:string>VOUCHER - Remember to bring this voucher and valid photo ID with you</b:string>
<b:string>CHILDBOOSTER / BABY SEAT - Child car seats and boosters are not included unless specified in your booking and can carry an extra cost. Should you need to book them, please contact your point of sale prior to travelling.</b:string>
<b:string>Superior service - </b:string>
<b:string>Maximum - </b:string>
<b:string>1 item of hand baggage allowed per person - </b:string>
<b:string>1 piece of baggage allowed per person ( max.dimensions 158cm) length+width+height=158cm - </b:string>
</a:Remarks>
<a:ServiceClass>Shared - Shuttle</a:ServiceClass>
<a:ServiceType>Premium</a:ServiceType>
<a:Time>PT0S</a:Time>
<a:VehicleType>Minibus - Portuguese</a:VehicleType>
</a:Transfer>
</a:Transfers>
</a:TransferPackage>
</a:Packages>
<a:RequestInfo>
<a:TransferRequestInfo>
<a:Date>2017-09-27T00:00:00+00:00</a:Date>
<a:DropOffLocation>
<a:AirportCode i:nil="true"/>
<a:HotelId>4158590</a:HotelId>
<a:LocationId>0</a:LocationId>
<a:LocationType>Hotel</a:LocationType>
</a:DropOffLocation>
<a:PickupLocation>
<a:AirportCode>JFK</a:AirportCode>
<a:HotelId>0</a:HotelId>
<a:LocationId>0</a:LocationId>
<a:LocationType>Airport</a:LocationType>
</a:PickupLocation>
<a:Time>PT0S</a:Time>
</a:TransferRequestInfo>
</a:RequestInfo>
</a:TransferPackageGrouping>
<a:TransferPackageGrouping>
<a:Packages>
<a:TransferPackage>
<a:CancellationPolicies i:nil="true"/>
<a:Id>fe6577a6-447c-474b-9112-46925ba8f49d</a:Id>
<a:Price>
<Currency>USD</Currency>
<FinalPrice>35.5</FinalPrice>
<FinalPriceInSupplierCurrency>35.5</FinalPriceInSupplierCurrency>
<OriginalPrice>35.5</OriginalPrice>
<OriginalPriceInSupplierCurrency>35.5</OriginalPriceInSupplierCurrency>
<SupplierCurrency>USD</SupplierCurrency>
</a:Price>
<a:SupplierId>13</a:SupplierId>
<a:SupplierName>HBS</a:SupplierName>
<a:Transfers>
<a:Transfer>
<a:Date>2017-09-19T00:00:00</a:Date>
<a:DropoffLocation xmlns:b="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<b:string>New York, John F Kennedy Int. Airport</b:string>
</a:DropoffLocation>
<a:EstimatedDuration>0</a:EstimatedDuration>
<a:Facilities xmlns:b="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<b:string>Maximum</b:string>
<b:string>1 item of hand baggage allowed per person</b:string>
<b:string>1 piece of baggage allowed per person ( max.dimensions 158cm) length+width+height=158cm</b:string>
</a:Facilities>
<a:PickUpRemarks>Supplier: GO AIRLINK Please call 1-212-812-9000 at least 24 hours prior to departure to reconfirm the pick up time. You will be picked up outside the hotel entrance. If you are unable to locate the driver, please call AIRLINK NEW YORK on 877-599-8200/212-812-9000. Languages spoken at the call centre: English.</a:PickUpRemarks>
<a:PickupLocation xmlns:b="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<b:string>Hilton NY JFK Airport</b:string>
</a:PickupLocation>
<a:Remarks xmlns:b="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<b:string>INTERNATIONAL FLIGHTS - For International flights, you are advised to be at the airport 3 hours before the departure of the flight.</b:string>
<b:string>VOUCHER - Remember to bring this voucher and valid photo ID with you</b:string>
<b:string>DOMESTIC FLIGHTS - For domestic flights, you are advised to be at the airport 2 hours before the departure of the flight.</b:string>
<b:string>CAN'T FIND DRIVER - In the event of being unable to locate the driver, please call the emergency number indicated in this voucher.</b:string>
<b:string>BABY SEATS - If you are travelling with children it is required to use a child safety seat. Please note that it´s the parent or guardian reponsability to bring one, in the case of not complying with this requirement the service may not be provided.</b:string>
<b:string>CAPACITY - Maximum capacity in your transportation vehicle is 10. For parties more than 10 please note that service will provided in separate vehicles.</b:string>
<b:string>Maximum - </b:string>
<b:string>1 item of hand baggage allowed per person - </b:string>
<b:string>1 piece of baggage allowed per person ( max.dimensions 158cm) length+width+height=158cm - </b:string>
</a:Remarks>
<a:ServiceClass>Shared - Shuttle</a:ServiceClass>
<a:ServiceType>Express</a:ServiceType>
<a:Time>PT0S</a:Time>
<a:VehicleType>Minibus</a:VehicleType>
</a:Transfer>
</a:Transfers>
</a:TransferPackage>
</a:Packages>
<a:RequestInfo>
<a:TransferRequestInfo>
<a:Date>2017-09-19T13:53:00+00:00</a:Date>
<a:DropOffLocation>
<a:AirportCode>JFK</a:AirportCode>
<a:HotelId>0</a:HotelId>
<a:LocationId>0</a:LocationId>
<a:LocationType>Airport</a:LocationType>
</a:DropOffLocation>
<a:PickupLocation>
<a:AirportCode i:nil="true"/>
<a:HotelId>4158590</a:HotelId>
<a:LocationId>0</a:LocationId>
<a:LocationType>Hotel</a:LocationType>
</a:PickupLocation>
<a:Time>PT0S</a:Time>
</a:TransferRequestInfo>
</a:RequestInfo>
</a:TransferPackageGrouping>
</Result>
</TransfersSearchResponse>
</ServiceRequestResult>
</ServiceRequestResponse>
</s:Body>
</s:Envelope>
Transfers Payment Preferences
The Transfers GetPaymentPreferences API call is used for retrieving the relevant payment methods relevant for the package(s) that you inquire.
Transfers Payment Preferences Request Fields
Field | Description | Mandatory |
---|---|---|
ClientIP | IP address of the requester | |
guid | The unique Transfer ID retrieved on the Transfers search response | Yes |
RequestType | GetPaymentPreferences | Yes |
SessionID | SessionID of the booking session | Yes |
TypeOfService | Transfers | Yes |
Transfers Payment Preferences Response Fields
Field | Description |
---|---|
Errors | Will be returned if any issues found during the data retrieval |
AcceptedCreditCards | nil=true |
Type | Cash |
PaymentPreference | The following fields demonstrate data concerning the Credit Card Payment Method |
AcceptedCreditCards | |
CanCollectServiceFee | True/False |
CardType | Credit card type |
ChargingCurrency | Currency of the credit card charging |
Commision | Commission for the transaction |
ConversionRate | Conversion rate between the search currency and the charging currency |
FlatFee | Transaction fee |
Type | CreditCardExternal, CreditCardInternal |
Transfers Payment Preferences Request
<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
<s:Body>
<ServiceRequest xmlns="http://tempuri.org/">
<rqst xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
<Request xmlns="" i:type="TransfersPaymentPreferencesRequest">
<ClientIP i:nil="true"/>
<PackageIds xmlns:a="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<a:guid>6aae65f3-458b-4483-ae82-2ca82af727d6</a:guid>
<a:guid>58de53fd-7a2e-4cb2-9671-04305ab454bc</a:guid>
</PackageIds>
</Request>
<RequestType xmlns="">GetPaymentPreferences</RequestType>
<SessionID xmlns="">/22/84812/D20170919T111324/3a05d0f8624746b4b5048a218b950017</SessionID>
<TypeOfService xmlns="">Transfers</TypeOfService>
</rqst>
</ServiceRequest>
</s:Body>
</s:Envelope>
Transfers Payment Preferences Request
<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
<s:Body>
<ServiceRequestResponse xmlns="http://tempuri.org/">
<ServiceRequestResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
<Errors xmlns=""/>
<TransfersPaymentPreferencesResponse xmlns="">
<ApplicablePreferences xmlns:a="http://schemas.datacontract.org/2004/07/IsuBe.Public.Enteties.Payment">
<a:PaymentPreference>
<a:AcceptedCreditCards i:nil="true"/>
<a:Type>Cash</a:Type>
</a:PaymentPreference>
<a:PaymentPreference>
<a:AcceptedCreditCards>
<a:CreditCardPaymentCommision>
<a:CanCollectServiceFee>true</a:CanCollectServiceFee>
<a:CardType>Visa</a:CardType>
<a:ChargingCurrency>USD</a:ChargingCurrency>
<a:Commision>0</a:Commision>
<a:ConversionRate>1</a:ConversionRate>
<a:FlatFee>0</a:FlatFee>
</a:CreditCardPaymentCommision>
<a:CreditCardPaymentCommision>
<a:CanCollectServiceFee>true</a:CanCollectServiceFee>
<a:CardType>MasterCard</a:CardType>
<a:ChargingCurrency>USD</a:ChargingCurrency>
<a:Commision>0</a:Commision>
<a:ConversionRate>1</a:ConversionRate>
<a:FlatFee>0</a:FlatFee>
</a:CreditCardPaymentCommision>
<a:CreditCardPaymentCommision>
<a:CanCollectServiceFee>true</a:CanCollectServiceFee>
<a:CardType>AmericanExpress</a:CardType>
<a:ChargingCurrency>USD</a:ChargingCurrency>
<a:Commision>0</a:Commision>
<a:ConversionRate>1</a:ConversionRate>
<a:FlatFee>0</a:FlatFee>
</a:CreditCardPaymentCommision>
<a:CreditCardPaymentCommision>
<a:CanCollectServiceFee>true</a:CanCollectServiceFee>
<a:CardType>Diners</a:CardType>
<a:ChargingCurrency>USD</a:ChargingCurrency>
<a:Commision>0</a:Commision>
<a:ConversionRate>1</a:ConversionRate>
<a:FlatFee>0</a:FlatFee>
</a:CreditCardPaymentCommision>
<a:CreditCardPaymentCommision>
<a:CanCollectServiceFee>true</a:CanCollectServiceFee>
<a:CardType>Discover</a:CardType>
<a:ChargingCurrency>USD</a:ChargingCurrency>
<a:Commision>0</a:Commision>
<a:ConversionRate>1</a:ConversionRate>
<a:FlatFee>0</a:FlatFee>
</a:CreditCardPaymentCommision>
<a:CreditCardPaymentCommision>
<a:CanCollectServiceFee>true</a:CanCollectServiceFee>
<a:CardType>Eurocard</a:CardType>
<a:ChargingCurrency>USD</a:ChargingCurrency>
<a:Commision>0</a:Commision>
<a:ConversionRate>1</a:ConversionRate>
<a:FlatFee>0</a:FlatFee>
</a:CreditCardPaymentCommision>
<a:CreditCardPaymentCommision>
<a:CanCollectServiceFee>true</a:CanCollectServiceFee>
<a:CardType>Maestro</a:CardType>
<a:ChargingCurrency>USD</a:ChargingCurrency>
<a:Commision>0</a:Commision>
<a:ConversionRate>1</a:ConversionRate>
<a:FlatFee>0</a:FlatFee>
</a:CreditCardPaymentCommision>
<a:CreditCardPaymentCommision>
<a:CanCollectServiceFee>true</a:CanCollectServiceFee>
<a:CardType>JCB</a:CardType>
<a:ChargingCurrency>USD</a:ChargingCurrency>
<a:Commision>0</a:Commision>
<a:ConversionRate>1</a:ConversionRate>
<a:FlatFee>0</a:FlatFee>
</a:CreditCardPaymentCommision>
</a:AcceptedCreditCards>
<a:Type>CreditCardInternal</a:Type>
</a:PaymentPreference>
</ApplicablePreferences>
</TransfersPaymentPreferencesResponse>
</ServiceRequestResult>
</ServiceRequestResponse>
</s:Body>
</s:Envelope>
Transfers Cancellation
The Transfers Cancellation Policy API call is used for requesting a cancellation for an existing Transfers reservation and retrieving the cancellation confirmation.
Transfers Cancellation Request Fields
Field | Description | Mandatory |
---|---|---|
Credentials | ||
Password | User's password with sufficient permissions | Yes |
UserName | Username with sufficient permissions | Yes |
ClientIP | ||
SegmentID | The Transfers reservation's SegmentID for the Cancellation request | Yes |
RequestType | CancelBooking | Yes |
TypeOfService | Transfers | Yes |
Transfers Cancellation Response Fields
Field | Description |
---|---|
Errors | Errors will be passed in this field if any are occurred during thr booking step |
SessionID | The cancellation SessionID |
CancellationFee | Cancellation penalty, if applied |
Currency | Cancellation fee's currency |
Status | Cancellation status - CX. If the status changes to "ER" or "ERC"m you should contact the supplier |
Transfers Cancellation Request
<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
<s:Body>
<ServiceRequest xmlns="http://tempuri.org/">
<rqst xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
<Credentials xmlns="">
<Password>****</Password>
<UserName>****</UserName>
</Credentials>
<Request xmlns="" i:type="ServiceBookCancelRequest">
<ClientIP i:nil="true"/>
<SegmentID>2725129</SegmentID>
</Request>
<RequestType xmlns="">CancelBooking</RequestType>
<TypeOfService xmlns="">Transfers</TypeOfService>
</rqst>
</ServiceRequest>
</s:Body>
</s:Envelope>
Transfers Cancellation Response
<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
<s:Body>
<ServiceRequestResponse xmlns="http://tempuri.org/">
<ServiceRequestResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
<Errors xmlns=""/>
<SessionID xmlns="">/22/84812/D20170919T115609/8a22ef412d0f489a9a89568c1e72902e</SessionID>
<TransfersBookCancelResponse xmlns="">
<CancellationFee>0</CancellationFee>
<Currency>USD</Currency>
<Status>CX</Status>
</TransfersBookCancelResponse>
</ServiceRequestResult>
</ServiceRequestResponse>
</s:Body>
</s:Envelope>
Transfers Book
The Transfers Book API call is used for requesting a Transfers reservation for the chosen package, and for retrieving the booking confirmation from the supplier.
Transfers Cancellation Request Fields
Field | Description | Mandatory |
---|---|---|
ClientIP | IP address of the requester | |
AirlineCode | Airline IATA code | Yes |
Card (For credit card payment) | The Card element is requested when the payment is by credit card. Otherwise, you should not send any details through the element | Yes When payment method is CC |
AddressLine | Card holder's address | Yes When payment method is CC |
CID | CID | Yes When payment method is CC |
CVV | Card CVV | Yes When payment method is CC |
CardNumber | Credit card number | Yes When payment method is CC |
CardType | Credit card card type | Yes When payment method is CC |
City | Card holder's city | Yes When payment method is CC |
Country | Card holder's country | Yes When payment method is CC |
ExpireDate | Credit card's expiration | Yes When payment method is CC |
HolderName | Card holder's name | Yes When payment method is CC |
Phone | Card holder's phone | Yes When payment method is CC |
ZipCode | Card holder's address ZIP code | Yes When payment method is CC |
Card (Closing) | ||
FlightNumber | Flight number to be sent to the Transfer supplier | Yes |
LeadPaxId | ID of the Lead PAX. Should be generated on your side, preferably as GUID. | Yes |
OutboundAirlineCode | Airline IATA code of the outbound flight | Yes |
guid | Transfer ID | Yes |
Address | Within the Address element, you should provide the country's ISO Alpha-2:XY | Yes |
Allocation | ||
Id | ID of the customer in the order. Should be generated on your side, preferably as GUID. Must be similar to the Lead PAX's ID when providing the Lead PAX's CustomerInfo | Yes |
Age | Customer's age | Yes |
BirthDate | Customer's birthdate | Yes |
Name | Within the Name element, you should provide: GivenName NamePrefix Surname | Yes |
Type | Adult or child | Yes |
SelectedPaymentMethod | Selected payment method for the order | Yes |
ServiceFee | Service fee claimed for the order | |
RequestType | Book | Yes |
SessionID | SessionID of the booking session | Yes |
TypeOfService | Transfers | Yes |
Transfers Cancellation Response Fields
Field | Description |
---|---|
Errors | Any errors occurring in the booking step will be passed to this field |
BookingID | The booking ID as retrieved from the supplier's services. Indicates that the booking has succeeded |
BookingReference | The booking reference as retrieved from the supplier's services. Indicates that the booking has succeeded |
BookingRemarks | Booking remarks passed by the supplier |
OrderId | Travolutionary Transfers OrderID |
SegmentId | Travolutionary Transfers SegmentID |
Status | Order Status; if succeeded, the status should be "OK". If the order has been set to "ER", please contact the supplier to inquire the issue. |
Currency | The currency as set in the Transfers search request |
FinalPrice | The final price, including taxes, markups and commission |
FinalPriceInSupplierCurrency | The final price in the supplier currency, including taxes, markups and commission |
OriginalPrice | The original price, without any markups and commissions |
OriginalPriceInSupplierCurrency | The original price in the supplier currency, without any markups and commissions |
SupplierCurrency | The supplier currency |
Transfers Book Cash Request
<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
<s:Body>
<ServiceRequest xmlns="http://tempuri.org/">
<rqst xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
<Request xmlns="" i:type="TransfersBookRequest">
<ClientIP i:nil="true"/>
<AirlineCode>UA</AirlineCode>
<FlightNumber>4323</FlightNumber>
<LeadPaxId>5e189ob1-y34b-49ef-94ad-68036f37b65f</LeadPaxId>
<OutboundAirlineCode>3212</OutboundAirlineCode>
<PackageIds xmlns:a="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<a:guid>bfbc5197-96c6-498a-b901-b33873714129</a:guid>
<a:guid>77746272-e16b-4598-84c2-83399a10d871</a:guid>
</PackageIds>
<Passengers>
<CustomerInfo>
<Address>
<CountryName>
<Code>IL</Code>
</CountryName>
</Address>
<Allocation>1</Allocation>
<Id>5e189ob1-y34b-49ef-94ad-68036f37b65f</Id>
<PersonDetails>
<Age>30</Age>
<BirthDate>1985-09-19T00:00:00</BirthDate>
<Name>
<GivenName>John</GivenName>
<NamePrefix>Mr</NamePrefix>
<Surname>Doe</Surname>
</Name>
<Type>Adult</Type>
</PersonDetails>
</CustomerInfo>
<CustomerInfo>
<Address>
<CountryName>
<Code>IL</Code>
</CountryName>
</Address>
<Allocation>2</Allocation>
<Id>3t125ob1-y34b-49ef-94ad-68976f14b65g</Id>
<PersonDetails>
<Age>30</Age>
<BirthDate>1985-09-19T00:00:00</BirthDate>
<Gender>Female</Gender>
<Name>
<GivenName>Jane</GivenName>
<NamePrefix>Ms</NamePrefix>
<Surname>Doe</Surname>
</Name>
<Type>Adult</Type>
</PersonDetails>
</CustomerInfo>
</Passengers>
<SelectedPaymentMethod>Cash</SelectedPaymentMethod>
<ServiceFee i:nil="true"/>
</Request>
<RequestType xmlns="">Book</RequestType>
<SessionID xmlns="">/22/84812/D20170919T113345/52c9c27dee154dafa7298d50881c38e2</SessionID>
<TypeOfService xmlns="">Transfers</TypeOfService>
</rqst>
</ServiceRequest>
</s:Body>
</s:Envelope>
Transfers Book Credit Card Request
<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
<s:Body>
<ServiceRequest xmlns="http://tempuri.org/">
<rqst xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
<Request xmlns="" i:type="TransfersBookRequest">
<ClientIP i:nil="true"/>
<AirlineCode>UA</AirlineCode>
<Card xmlns:a="http://schemas.datacontract.org/2004/07/IsuBe.Public.Enteties.Payment">
<a:AddressLine>Mainstreet 321</a:AddressLine>
<a:CID>***</a:CID>
<a:CVV>321</a:CVV>
<a:CardNumber>1111</a:CardNumber>
<a:CardType>Visa</a:CardType>
<a:City>London</a:City>
<a:Country>IL</a:Country>
<a:ExpireDate>2021-12-01T00:00:00+00:00</a:ExpireDate>
<a:HolderName>John Doe</a:HolderName>
<a:Phone>+972524975130</a:Phone>
<a:ZipCode>15919849</a:ZipCode>
</Card>
<FlightNumber>4323</FlightNumber>
<LeadPaxId>5e189ob1-y34b-49ef-94ad-68036f37b65f</LeadPaxId>
<OutboundAirlineCode>3212</OutboundAirlineCode>
<PackageIds xmlns:a="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<a:guid>bfbc5197-96c6-498a-b901-b33873714129</a:guid>
<a:guid>77746272-e16b-4598-84c2-83399a10d871</a:guid>
</PackageIds>
<Passengers>
<CustomerInfo>
<Address>
<CountryName>
<Code>IL</Code>
</CountryName>
</Address>
<Allocation>1</Allocation>
<Id>5e189ob1-y34b-49ef-94ad-68036f37b65f</Id>
<PersonDetails>
<Age>30</Age>
<BirthDate>1985-09-19T00:00:00</BirthDate>
<Name>
<GivenName>John</GivenName>
<NamePrefix>Mr</NamePrefix>
<Surname>Doe</Surname>
</Name>
<Type>Adult</Type>
</PersonDetails>
</CustomerInfo>
<CustomerInfo>
<Address>
<CountryName>
<Code>IL</Code>
</CountryName>
</Address>
<Allocation>2</Allocation>
<Id>3t125ob1-y34b-49ef-94ad-68976f14b65g</Id>
<PersonDetails>
<Age>30</Age>
<BirthDate>1985-09-19T00:00:00</BirthDate>
<Gender>Female</Gender>
<Name>
<GivenName>Jane</GivenName>
<NamePrefix>Ms</NamePrefix>
<Surname>Doe</Surname>
</Name>
<Type>Adult</Type>
</PersonDetails>
</CustomerInfo>
</Passengers>
<SelectedPaymentMethod>Cash</SelectedPaymentMethod>
<ServiceFee i:nil="true"/>
</Request>
<RequestType xmlns="">Book</RequestType>
<SessionID xmlns="">/22/84812/D20170919T113345/52c9c27dee154dafa7298d50881c38e2</SessionID>
<TypeOfService xmlns="">Transfers</TypeOfService>
</rqst>
</ServiceRequest>
</s:Body>
</s:Envelope>
Transfers Book Response
<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
<s:Body>
<ServiceRequestResponse xmlns="http://tempuri.org/">
<ServiceRequestResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
<Errors xmlns=""/>
<TransfersBookResponse xmlns="" xmlns:a="http://schemas.datacontract.org/2004/07/IsuBe.Public.Enteties.Transfers">
<a:TransferSegments>
<a:TransferBookSegment>
<a:BookingID>254-1629807</a:BookingID>
<a:BookingReference>8EEE8201DB1F4C919866</a:BookingReference>
<a:BookingRemarks xmlns:b="http://schemas.microsoft.com/2003/10/Serialization/Arrays"/>
<a:OrderId>2705985</a:OrderId>
<a:SegmentId>2725128</a:SegmentId>
<a:Status>OK</a:Status>
<a:TotalPrice>
<Currency>USD</Currency>
<FinalPrice>139.23</FinalPrice>
<FinalPriceInSupplierCurrency>139.23</FinalPriceInSupplierCurrency>
<OriginalPrice>139.23</OriginalPrice>
<OriginalPriceInSupplierCurrency>139.23</OriginalPriceInSupplierCurrency>
<SupplierCurrency>USD</SupplierCurrency>
</a:TotalPrice>
</a:TransferBookSegment>
<a:TransferBookSegment>
<a:BookingID>254-1629807</a:BookingID>
<a:BookingReference>8EEE8201DB1F4C919866</a:BookingReference>
<a:BookingRemarks xmlns:b="http://schemas.microsoft.com/2003/10/Serialization/Arrays"/>
<a:OrderId>2705985</a:OrderId>
<a:SegmentId>2725129</a:SegmentId>
<a:Status>OK</a:Status>
<a:TotalPrice>
<Currency>USD</Currency>
<FinalPrice>35.5</FinalPrice>
<FinalPriceInSupplierCurrency>35.5</FinalPriceInSupplierCurrency>
<OriginalPrice>35.5</OriginalPrice>
<OriginalPriceInSupplierCurrency>35.5</OriginalPriceInSupplierCurrency>
<SupplierCurrency>USD</SupplierCurrency>
</a:TotalPrice>
</a:TransferBookSegment>
</a:TransferSegments>
</TransfersBookResponse>
</ServiceRequestResult>
</ServiceRequestResponse>
</s:Body>
</s:Envelope>
Updated 4 months ago