Skip Navigation

Book Car Reservation

2.2.0
Car
Reservation
SOAP API
Travel Agency

Not Signed In.

Looks like you may not have access to all of the resources and documentation for this page.
Please log-in or contact your support desk team if you believe you should have access.

Deprecated API

No New Users - All new users must use the Enhanced Vehicle Book. | Existing users - Supported and can continue to use. | No new enhancements will be added to this. | For enhanced features, move to Enhanced Vehicle Book.

The Book Car Reservation (OTA_VehResLLSRQ) API is used to reserve one or more rental cars.

Target Audience
Travel Agency
API Version
2.2.0
Authentication
Session Token
Service Action Code
OTA_VehResLLSRQ

Note: A PNR containing at least one passenger name must be in the work area/session is a pre-condition to using this API.

Using this API, you can reserve a vehicle and specify:

  • An extended location code
  • Arrival flight information
  • A different return location
  • A name number
  • A customer address
  • A billing number, a billing reference
  • A collection site ID, name, phone number, customer collection address
  • A delivery site ID, name, phone number, customer delivery address
  • The booking agent, booking source
  • A rate code, corporate ID, frequent flyer number
  • A drop off charge, an ID number, promotion code, rate override, tour code, credit card guarantee
  • Plus, other parameters
Sample Request
<?xml version="1.0" encoding="UTF-8"?>
<!--Pre-Conditions: a PNR containing at least one passenger name must be in the work area/session.-->
<!--Reserve a vehicle and specify an extended location code.-->
<!--Equivalent Sabre host command: 0CARZENN1DFW21DEC-24DEC/SCAR/ARR-1000/RET-1200/PUP-LONC18-->
<OTA_VehResRQ Version="2.2.0" xmlns="http://webservices.sabre.com/sabreXML/2011/10" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <VehResRQCore>
        <VehPrefs>
            <VehPref>
                <VehType>SCAR</VehType>
            </VehPref>
        </VehPrefs>
        <VehRentalCore PickUpDateTime="12-21T10:00" Quantity="1" ReturnDateTime="12-24T12:00">
            <PickUpLocation ExtendedLocationCode="LONC18" LocationCode="DFW"/>
        </VehRentalCore>
        <VendorPrefs>
            <VendorPref Code="ZE"/>
        </VendorPrefs>
    </VehResRQCore>
</OTA_VehResRQ>
<!--Reserve a vehicle and specify arrival flight information.-->
<!--Equivalent Sabre host command: 0CARZENN1DFW21DEC-24DEC/SCAR/ARR-1000 XX1234/RET-1200-->
<OTA_VehResRQ Version="2.2.0" xmlns="http://webservices.sabre.com/sabreXML/2011/10" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <VehResRQCore>
        <VehPrefs>
            <VehPref>
                <VehType>SCAR</VehType>
            </VehPref>
        </VehPrefs>
        <VehRentalCore PickUpDateTime="12-21T10:00" Quantity="1" ReturnDateTime="12-24T12:00">
            <PickUpLocation LocationCode="DFW">
                <ArrivalFlightInfo>
                    <MarketingAirline Code="XX" FlightNumber="1234"/>
                </ArrivalFlightInfo>
            </PickUpLocation>
        </VehRentalCore>
        <VendorPrefs>
            <VendorPref Code="ZE"/>
        </VendorPrefs>
    </VehResRQCore>
</OTA_VehResRQ>
<!--Reserve a vehicle and specify a different return location.-->
<!--Equivalent Sabre host command: 0CARZENN1DFW21DEC-24DEC/SCAR/ARR-1000/RET-1200/DO-AUS-->
<OTA_VehResRQ Version="2.2.0" xmlns="http://webservices.sabre.com/sabreXML/2011/10" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <VehResRQCore>
        <VehPrefs>
            <VehPref>
                <VehType>SCAR</VehType>
            </VehPref>
        </VehPrefs>
        <VehRentalCore PickUpDateTime="12-21T10:00" Quantity="1" ReturnDateTime="12-24T12:00">
            <PickUpLocation LocationCode="DFW"/>
            <ReturnLocation LocationCode="AUS"/>
        </VehRentalCore>
        <VendorPrefs>
            <VendorPref Code="ZE"/>
        </VendorPrefs>
    </VehResRQCore>
</OTA_VehResRQ>
<!--Reserve a vehicle and specify a name number.-->
<!--Equivalent Sabre host command: 0CARZENN1DFW21DEC-24DEC/SCAR/ARR-1000/RET-1200/NM-1.1-->
<OTA_VehResRQ Version="2.2.0" xmlns="http://webservices.sabre.com/sabreXML/2011/10" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <VehResRQCore>
        <Customer NameNumber="1.1"/>
        <VehPrefs>
            <VehPref>
                <VehType>SCAR</VehType>
            </VehPref>
        </VehPrefs>
        <VehRentalCore PickUpDateTime="12-21T10:00" Quantity="1" ReturnDateTime="12-24T12:00">
            <PickUpLocation LocationCode="DFW"/>
        </VehRentalCore>
        <VendorPrefs>
            <VendorPref Code="ZE"/>
        </VendorPrefs>
    </VehResRQCore>
</OTA_VehResRQ>
<!--Reserve a vehicle and specify a customer address.-->
<!--Equivalent Sabre host command: 0CARZENN1DFW21DEC-24DEC/SCAR/ARR-1000/RET-1200/CAD-1234 TEST ADDRESS DALLAS TX 12345 US-->
<OTA_VehResRQ Version="2.2.0" xmlns="http://webservices.sabre.com/sabreXML/2011/10" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <VehResRQCore>
        <Customer>
            <Address>
                <CityName>DALLAS</CityName>
                <CountryCode>US</CountryCode>
                <PostalCode>12345</PostalCode>
                <StateCountyProv StateCode="TX"/>
                <StreetNmbr>1234 TEST ADDRESS</StreetNmbr>
            </Address>
        </Customer>
        <VehPrefs>
            <VehPref>
                <VehType>SCAR</VehType>
            </VehPref>
        </VehPrefs>
        <VehRentalCore PickUpDateTime="12-21T10:00" Quantity="1" ReturnDateTime="12-24T12:00">
            <PickUpLocation LocationCode="DFW"/>
        </VehRentalCore>
        <VendorPrefs>
            <VendorPref Code="ZE"/>
        </VendorPrefs>
    </VehResRQCore>
</OTA_VehResRQ>
<!--Reserve a vehicle and specify a billing number.-->
<!--Equivalent Sabre host command: 0CARZENN1DFW21DEC-24DEC/SCAR/ARR-1000/RET-1200/BN-123456789ABC-->
<OTA_VehResRQ Version="2.2.0" xmlns="http://webservices.sabre.com/sabreXML/2011/10" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <VehResRQCore>
        <Customer>
            <Billing Number="123456789ABC"/>
        </Customer>
        <VehPrefs>
            <VehPref>
                <VehType>SCAR</VehType>
            </VehPref>
        </VehPrefs>
        <VehRentalCore PickUpDateTime="12-21T10:00" Quantity="1" ReturnDateTime="12-24T12:00">
            <PickUpLocation LocationCode="DFW"/>
        </VehRentalCore>
        <VendorPrefs>
            <VendorPref Code="ZE"/>
        </VendorPrefs>
    </VehResRQCore>
</OTA_VehResRQ>
<!--Reserve a vehicle and specify a billing reference.-->
<!--Equivalent Sabre host command: 0CARZENN1DFW21DEC-24DEC/SCAR/ARR-1000/RET-1200/BR-123456789DEF-->
<OTA_VehResRQ Version="2.2.0" xmlns="http://webservices.sabre.com/sabreXML/2011/10" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <VehResRQCore>
        <Customer>
            <Billing Reference="123456789DEF"/>
        </Customer>
        <VehPrefs>
            <VehPref>
                <VehType>SCAR</VehType>
            </VehPref>
        </VehPrefs>
        <VehRentalCore PickUpDateTime="12-21T10:00" Quantity="1" ReturnDateTime="12-24T12:00">
            <PickUpLocation LocationCode="DFW"/>
        </VehRentalCore>
        <VendorPrefs>
            <VendorPref Code="ZE"/>
        </VendorPrefs>
    </VehResRQCore>
</OTA_VehResRQ>
<!--Reserve a vehicle and specify a collection site ID.-->
<!--Equivalent Sabre host command: 0CARZENN1DFW21DEC-24DEC/SCAR/ARR-1000/RET-1200/CID-ABC123-->
<OTA_VehResRQ Version="2.2.0" xmlns="http://webservices.sabre.com/sabreXML/2011/10" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <VehResRQCore>
        <Customer>
            <CollectionAddress SiteID="ABC123"/>
        </Customer>
        <VehPrefs>
            <VehPref>
                <VehType>SCAR</VehType>
            </VehPref>
        </VehPrefs>
        <VehRentalCore PickUpDateTime="12-21T10:00" Quantity="1" ReturnDateTime="12-24T12:00">
            <PickUpLocation LocationCode="DFW"/>
        </VehRentalCore>
        <VendorPrefs>
            <VendorPref Code="ZE"/>
        </VendorPrefs>
    </VehResRQCore>
</OTA_VehResRQ>
<!--Reserve a vehicle and specify a collection site name.-->
<!--Equivalent Sabre host command: 0CARZENN1DFW21DEC-24DEC/SCAR/ARR-1000/RET-1200/CNM-TEST COLLECTION LOCATION-->
<OTA_VehResRQ Version="2.2.0" xmlns="http://webservices.sabre.com/sabreXML/2011/10" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <VehResRQCore>
        <Customer>
            <CollectionAddress SiteName="TEST COLLECTION LOCATION"/>
        </Customer>
        <VehPrefs>
            <VehPref>
                <VehType>SCAR</VehType>
            </VehPref>
        </VehPrefs>
        <VehRentalCore PickUpDateTime="12-21T10:00" Quantity="1" ReturnDateTime="12-24T12:00">
            <PickUpLocation LocationCode="DFW"/>
        </VehRentalCore>
        <VendorPrefs>
            <VendorPref Code="ZE"/>
        </VendorPrefs>
    </VehResRQCore>
</OTA_VehResRQ>
<!--Reserve a vehicle and specify a collection phone number.-->
<!--Equivalent Sabre host command: 0CARZENN1DFW21DEC-24DEC/SCAR/ARR-1000/RET-1200/CPH-8175551212-->
<OTA_VehResRQ Version="2.2.0" xmlns="http://webservices.sabre.com/sabreXML/2011/10" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <VehResRQCore>
        <Customer>
            <CollectionAddress Phone="8175551212"/>
        </Customer>
        <VehPrefs>
            <VehPref>
                <VehType>SCAR</VehType>
            </VehPref>
        </VehPrefs>
        <VehRentalCore PickUpDateTime="12-21T10:00" Quantity="1" ReturnDateTime="12-24T12:00">
            <PickUpLocation LocationCode="DFW"/>
        </VehRentalCore>
        <VendorPrefs>
            <VendorPref Code="ZE"/>
        </VendorPrefs>
    </VehResRQCore>
</OTA_VehResRQ>
<!--Reserve a vehicle and specify a customer collection address.-->
<!--Equivalent Sabre host command: 0CARZENN1DFW21DEC-24DEC/SCAR/ARR-1000/RET-1200/CSA-3150 SABRE DRIVE/CCT-SOUTHLAKE/CST-TX/CPC-76092/CCC-US-->
<OTA_VehResRQ Version="2.2.0" xmlns="http://webservices.sabre.com/sabreXML/2011/10" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <VehResRQCore>
        <Customer>
            <CollectionAddress>
                <CityName>SOUTHLAKE</CityName>
                <CountryCode>US</CountryCode>
                <PostalCode>76092</PostalCode>
                <StateCountyProv StateCode="TX"/>
                <StreetNmbr>3150 SABRE DRIVE</StreetNmbr>
            </CollectionAddress>
        </Customer>
        <VehPrefs>
            <VehPref>
                <VehType>SCAR</VehType>
            </VehPref>
        </VehPrefs>
        <VehRentalCore PickUpDateTime="12-21T10:00" Quantity="1" ReturnDateTime="12-24T12:00">
            <PickUpLocation LocationCode="DFW"/>
        </VehRentalCore>
        <VendorPrefs>
            <VendorPref Code="ZE"/>
        </VendorPrefs>
    </VehResRQCore>
</OTA_VehResRQ>
<!--Reserve a vehicle and specify a delivery site ID.-->
<!--Equivalent Sabre host command: 0CARZENN1DFW21DEC-24DEC/SCAR/ARR-1000/RET-1200/DID-ABC123-->
<OTA_VehResRQ Version="2.2.0" xmlns="http://webservices.sabre.com/sabreXML/2011/10" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <VehResRQCore>
        <Customer>
            <DeliveryAddress SiteID="ABC123"/>
        </Customer>
        <VehPrefs>
            <VehPref>
                <VehType>SCAR</VehType>
            </VehPref>
        </VehPrefs>
        <VehRentalCore PickUpDateTime="12-21T10:00" Quantity="1" ReturnDateTime="12-24T12:00">
            <PickUpLocation LocationCode="DFW"/>
        </VehRentalCore>
        <VendorPrefs>
            <VendorPref Code="ZE"/>
        </VendorPrefs>
    </VehResRQCore>
</OTA_VehResRQ>
<!--Reserve a vehicle and specify a delivery site name.-->
<!--Equivalent Sabre host command: 0CARZENN1DFW21DEC-24DEC/SCAR/ARR-1000/RET-1200/DNM-TEST DELIVERY LOCATION-->
<OTA_VehResRQ Version="2.2.0" xmlns="http://webservices.sabre.com/sabreXML/2011/10" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <VehResRQCore>
        <Customer>
            <DeliveryAddress SiteName="TEST DELIVERY LOCATION"/>
        </Customer>
        <VehPrefs>
            <VehPref>
                <VehType>SCAR</VehType>
            </VehPref>
        </VehPrefs>
        <VehRentalCore PickUpDateTime="12-21T10:00" Quantity="1" ReturnDateTime="12-24T12:00">
            <PickUpLocation LocationCode="DFW"/>
        </VehRentalCore>
        <VendorPrefs>
            <VendorPref Code="ZE"/>
        </VendorPrefs>
    </VehResRQCore>
</OTA_VehResRQ>
<!--Reserve a vehicle and specify a delivery phone number.-->
<!--Equivalent Sabre host command: 0CARZENN1DFW21DEC-24DEC/SCAR/ARR-1000/RET-1200/DPH-8175551212-->
<OTA_VehResRQ Version="2.2.0" xmlns="http://webservices.sabre.com/sabreXML/2011/10" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <VehResRQCore>
        <Customer>
            <DeliveryAddress Phone="8175551212"/>
        </Customer>
        <VehPrefs>
            <VehPref>
                <VehType>SCAR</VehType>
            </VehPref>
        </VehPrefs>
        <VehRentalCore PickUpDateTime="12-21T10:00" Quantity="1" ReturnDateTime="12-24T12:00">
            <PickUpLocation LocationCode="DFW"/>
        </VehRentalCore>
        <VendorPrefs>
            <VendorPref Code="ZE"/>
        </VendorPrefs>
    </VehResRQCore>
</OTA_VehResRQ>
<!--Reserve a vehicle and specify a customer delivery address.-->
<!--Equivalent Sabre host command: 0CARZENN1DFW21DEC-24DEC/SCAR/ARR-1000/RET-1200/DCT-SOUTHLAKE/DCC-US/DPC-76092/DST-TX/DSA-3150 SABRE DRIVE-->
<OTA_VehResRQ Version="2.2.0" xmlns="http://webservices.sabre.com/sabreXML/2011/10" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <VehResRQCore>
        <Customer>
            <DeliveryAddress>
                <CityName>SOUTHLAKE</CityName>
                <CountryCode>US</CountryCode>
                <PostalCode>76092</PostalCode>
                <StateCountyProv StateCode="TX"/>
                <StreetNmbr>3150 SABRE DRIVE</StreetNmbr>
            </DeliveryAddress>
        </Customer>
        <VehPrefs>
            <VehPref>
                <VehType>SCAR</VehType>
            </VehPref>
        </VehPrefs>
        <VehRentalCore PickUpDateTime="12-21T10:00" Quantity="1" ReturnDateTime="12-24T12:00">
            <PickUpLocation LocationCode="DFW"/>
        </VehRentalCore>
        <VendorPrefs>
            <VendorPref Code="ZE"/>
        </VendorPrefs>
    </VehResRQCore>
</OTA_VehResRQ>
<!--Reserve a vehicle and specify the booking agent.-->
<!--Equivalent Sabre host command: 0CARZENN1DFW21DEC-24DEC/SCAR/ARR-1000/RET-1200/BA-AWS-->
<OTA_VehResRQ Version="2.2.0" xmlns="http://webservices.sabre.com/sabreXML/2011/10" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <VehResRQCore>
        <POS>
            <Source AgentSine="AWS"/>
        </POS>
        <VehPrefs>
            <VehPref>
                <VehType>SCAR</VehType>
            </VehPref>
        </VehPrefs>
        <VehRentalCore PickUpDateTime="12-21T10:00" Quantity="1" ReturnDateTime="12-24T12:00">
            <PickUpLocation LocationCode="DFW"/>
        </VehRentalCore>
        <VendorPrefs>
            <VendorPref Code="ZE"/>
        </VendorPrefs>
    </VehResRQCore>
</OTA_VehResRQ>
<!--Reserve a vehicle and specify the booking source.-->
<!--Equivalent Sabre host command: 0CARZENN1DFW21DEC-24DEC/SCAR/ARR-1000/RET-1200/BS-45123455-->
<OTA_VehResRQ Version="2.2.0" xmlns="http://webservices.sabre.com/sabreXML/2011/10" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <VehResRQCore>
        <POS>
            <Source>
                <RequestorID>45123455</RequestorID>
            </Source>
        </POS>
        <VehPrefs>
            <VehPref>
                <VehType>SCAR</VehType>
            </VehPref>
        </VehPrefs>
        <VehRentalCore PickUpDateTime="12-21T10:00" Quantity="1" ReturnDateTime="12-24T12:00">
            <PickUpLocation LocationCode="DFW"/>
        </VehRentalCore>
        <VendorPrefs>
            <VendorPref Code="ZE"/>
        </VendorPrefs>
    </VehResRQCore>
</OTA_VehResRQ>
<!--Reserve a vehicle and specify a rate code.-->
<!--Equivalent Sabre host command: 0CARZENN1DFW21DEC-24DEC/SCAR/ARR-1000/RET-1200/RC-ABC123-->
<OTA_VehResRQ Version="2.2.0" xmlns="http://webservices.sabre.com/sabreXML/2011/10" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <VehResRQCore>
        <RateQualifier RateCode="ABC123"/>
        <VehPrefs>
            <VehPref>
                <VehType>SCAR</VehType>
            </VehPref>
        </VehPrefs>
        <VehRentalCore PickUpDateTime="12-21T10:00" Quantity="1" ReturnDateTime="12-24T12:00">
            <PickUpLocation LocationCode="DFW"/>
        </VehRentalCore>
        <VendorPrefs>
            <VendorPref Code="ZE"/>
        </VendorPrefs>
    </VehResRQCore>
</OTA_VehResRQ>
<!--Reserve a vehicle and specify a corporate ID.-->
<!--Equivalent Sabre host command: 0CARZENN1DFW21DEC-24DEC/SCAR/ARR-1000/RET-1200/CD-ABC123-->
<OTA_VehResRQ Version="2.2.0" xmlns="http://webservices.sabre.com/sabreXML/2011/10" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <VehResRQCore>
        <RateQualifier>
            <Corporate>
                <ID>ABC123</ID>
            </Corporate>
        </RateQualifier>
        <VehPrefs>
            <VehPref>
                <VehType>SCAR</VehType>
            </VehPref>
        </VehPrefs>
        <VehRentalCore PickUpDateTime="12-21T10:00" Quantity="1" ReturnDateTime="12-24T12:00">
            <PickUpLocation LocationCode="DFW"/>
        </VehRentalCore>
        <VendorPrefs>
            <VendorPref Code="ZE"/>
        </VendorPrefs>
    </VehResRQCore>
</OTA_VehResRQ>
<!--Reserve a vehicle and specify a frequent flyer number.-->
<!--Equivalent Sabre host command: 0CARZENN1DFW21DEC-24DEC/SCAR/ARR-1000/RET-1200/FT-YYABC123-->
<OTA_VehResRQ Version="2.2.0" xmlns="http://webservices.sabre.com/sabreXML/2011/10" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <VehResRQCore>
        <RateQualifier>
            <CustLoyalty ProgramID="YY" MembershipId="ABC123"/>
        </RateQualifier>
        <VehPrefs>
            <VehPref>
                <VehType>SCAR</VehType>
            </VehPref>
        </VehPrefs>
        <VehRentalCore PickUpDateTime="12-21T10:00" Quantity="1" ReturnDateTime="12-24T12:00">
            <PickUpLocation LocationCode="DFW"/>
        </VehRentalCore>
        <VendorPrefs>
            <VendorPref Code="ZE"/>
        </VendorPrefs>
    </VehResRQCore>
</OTA_VehResRQ>
<!--Reserve a vehicle and specify a drop off charge.-->
<!--Equivalent Sabre host command: 0CARZENN1DFW21DEC-24DEC/SCAR/ARR-1000/RET-1200/DOC-25.00-->
<OTA_VehResRQ Version="2.2.0" xmlns="http://webservices.sabre.com/sabreXML/2011/10" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <VehResRQCore>
        <RateQualifier>
            <DropOffCharge Amount="25.00"/>
        </RateQualifier>
        <VehPrefs>
            <VehPref>
                <VehType>SCAR</VehType>
            </VehPref>
        </VehPrefs>
        <VehRentalCore PickUpDateTime="12-21T10:00" Quantity="1" ReturnDateTime="12-24T12:00">
            <PickUpLocation LocationCode="DFW"/>
        </VehRentalCore>
        <VendorPrefs>
            <VendorPref Code="ZE"/>
        </VendorPrefs>
    </VehResRQCore>
</OTA_VehResRQ>
<!--Reserve a vehicle and specify an ID number.-->
<!--Equivalent Sabre host command: 0CARZENN1DFW21DEC-24DEC/SCAR/ARR-1000/RET-1200/ID-ABC123-->
<OTA_VehResRQ Version="2.2.0" xmlns="http://webservices.sabre.com/sabreXML/2011/10" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <VehResRQCore>
        <RateQualifier>
            <ID>
                <Number>ABC123</Number>
            </ID>
        </RateQualifier>
        <VehPrefs>
            <VehPref>
                <VehType>SCAR</VehType>
            </VehPref>
        </VehPrefs>
        <VehRentalCore PickUpDateTime="12-21T10:00" Quantity="1" ReturnDateTime="12-24T12:00">
            <PickUpLocation LocationCode="DFW"/>
        </VehRentalCore>
        <VendorPrefs>
            <VendorPref Code="ZE"/>
        </VendorPrefs>
    </VehResRQCore>
</OTA_VehResRQ>
<!--Reserve a vehicle and specify a promotion code.-->
<!--Equivalent Sabre host command: 0CARZENN1DFW21DEC-24DEC/SCAR/ARR-1000/RET-1200/PC-ABC123-->
<OTA_VehResRQ Version="2.2.0" xmlns="http://webservices.sabre.com/sabreXML/2011/10" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <VehResRQCore>
        <RateQualifier>
            <Promotion>
                <Code>ABC123</Code>
            </Promotion>
        </RateQualifier>
        <VehPrefs>
            <VehPref>
                <VehType>SCAR</VehType>
            </VehPref>
        </VehPrefs>
        <VehRentalCore PickUpDateTime="12-21T10:00" Quantity="1" ReturnDateTime="12-24T12:00">
            <PickUpLocation LocationCode="DFW"/>
        </VehRentalCore>
        <VendorPrefs>
            <VendorPref Code="ZE"/>
        </VendorPrefs>
    </VehResRQCore>
</OTA_VehResRQ>
<!--Reserve a vehicle and specify a rate override.-->
<!--Equivalent Sabre host command: 0CARZENN1DFW21DEC-24DEC/SCAR/ARR-1000/RET-1200/RT-TEST OVERRIDE-->
<OTA_VehResRQ Version="2.2.0" xmlns="http://webservices.sabre.com/sabreXML/2011/10" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <VehResRQCore>
        <RateQualifier>
            <RateOverride>
                <Text>TEST OVERRIDE</Text>
            </RateOverride>
        </RateQualifier>
        <VehPrefs>
            <VehPref>
                <VehType>SCAR</VehType>
            </VehPref>
        </VehPrefs>
        <VehRentalCore PickUpDateTime="12-21T10:00" Quantity="1" ReturnDateTime="12-24T12:00">
            <PickUpLocation LocationCode="DFW"/>
        </VehRentalCore>
        <VendorPrefs>
            <VendorPref Code="ZE"/>
        </VendorPrefs>
    </VehResRQCore>
</OTA_VehResRQ>
<!--Reserve a vehicle and specify a tour code.-->
<!--Equivalent Sabre host command: 0CARZENN1DFW21DEC-24DEC/SCAR/ARR-1000/RET-1200/IT-DEF456-->
<OTA_VehResRQ Version="2.2.0" xmlns="http://webservices.sabre.com/sabreXML/2011/10" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <VehResRQCore>
        <RateQualifier>
            <TourCode>
                <Text>DEF456</Text>
            </TourCode>
        </RateQualifier>
        <VehPrefs>
            <VehPref>
                <VehType>SCAR</VehType>
            </VehPref>
        </VehPrefs>
        <VehRentalCore PickUpDateTime="12-21T10:00" Quantity="1" ReturnDateTime="12-24T12:00">
            <PickUpLocation LocationCode="DFW"/>
        </VehRentalCore>
        <VendorPrefs>
            <VendorPref Code="ZE"/>
        </VendorPrefs>
    </VehResRQCore>
</OTA_VehResRQ>
<!--Reserve a vehicle and specify a credit card guarantee.-->
<!--Equivalent Sabre host command: 0CARZENN1DFW21DEC-24DEC/SCAR/ARR-1000/RET-1200/GAX1234567890EXP 12 12-TEST-->
<OTA_VehResRQ Version="2.2.0" xmlns="http://webservices.sabre.com/sabreXML/2011/10" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <VehResRQCore>
        <RentalPaymentPref>
            <Guarantee Code="G">
                <PaymentCard Code="AX" ExpireDate="2012-12" Number="1234567890">
                    <PersonName>
                        <Surname>TEST</Surname>
                    </PersonName>
                </PaymentCard>
            </Guarantee>
        </RentalPaymentPref>
        <VehPrefs>
            <VehPref>
                <VehType>SCAR</VehType>
            </VehPref>
        </VehPrefs>
        <VehRentalCore PickUpDateTime="12-21T10:00" Quantity="1" ReturnDateTime="12-24T12:00">
            <PickUpLocation LocationCode="DFW"/>
        </VehRentalCore>
        <VendorPrefs>
            <VendorPref Code="ZE"/>
        </VendorPrefs>
    </VehResRQCore>
</OTA_VehResRQ>
<!--Reserve a vehicle and specify a guarantee.-->
<!--Equivalent Sabre host command: 0CARZENN1DFW21DEC-24DEC/SCAR/ARR-1000/RET-1200/GAGENCY CHECK-->
<OTA_VehResRQ Version="2.2.0" xmlns="http://webservices.sabre.com/sabreXML/2011/10" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <VehResRQCore>
        <RentalPaymentPref>
            <Guarantee Code="G">
                <Text>AGENCY CHECK</Text>
            </Guarantee>
        </RentalPaymentPref>
        <VehPrefs>
            <VehPref>
                <VehType>SCAR</VehType>
            </VehPref>
        </VehPrefs>
        <VehRentalCore PickUpDateTime="12-21T10:00" Quantity="1" ReturnDateTime="12-24T12:00">
            <PickUpLocation LocationCode="DFW"/>
        </VehRentalCore>
        <VendorPrefs>
            <VendorPref Code="ZE"/>
        </VendorPrefs>
    </VehResRQCore>
</OTA_VehResRQ>
<!--Reserve a vehicle and specify a voucher.-->
<!--Equivalent Sabre host command: 0CARZENN1DFW21DEC-24DEC/SCAR/ARR-1000/RET-1200/VV-FC/VB-1234567/VF-E-->
<OTA_VehResRQ Version="2.2.0" xmlns="http://webservices.sabre.com/sabreXML/2011/10" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <VehResRQCore>
        <RentalPaymentPref>
            <Voucher BillingNumber="1234567" Format="E" Type="FC"/>
        </RentalPaymentPref>
        <VehPrefs>
            <VehPref>
                <VehType>SCAR</VehType>
            </VehPref>
        </VehPrefs>
        <VehRentalCore PickUpDateTime="12-21T10:00" Quantity="1" ReturnDateTime="12-24T12:00">
            <PickUpLocation LocationCode="DFW"/>
        </VehRentalCore>
        <VendorPrefs>
            <VendorPref Code="ZE"/>
        </VendorPrefs>
    </VehResRQCore>
</OTA_VehResRQ>
<!--Reserve a vehicle and specify special equipment.-->
<!--Equivalent Sabre host command: 0CARZENN1DFW21DEC-24DEC/SCAR/ARR-1000/RET-1200/SQ-HCL-CDP-->
<OTA_VehResRQ Version="2.2.0" xmlns="http://webservices.sabre.com/sabreXML/2011/10" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <VehResRQCore>
        <SpecialEquipPrefs>
            <SpecialEquipPref EquipType="HCL"/>
            <SpecialEquipPref EquipType="CDP"/>
        </SpecialEquipPrefs>
        <VehPrefs>
            <VehPref>
                <VehType>SCAR</VehType>
            </VehPref>
        </VehPrefs>
        <VehRentalCore PickUpDateTime="12-21T10:00" Quantity="1" ReturnDateTime="12-24T12:00">
            <PickUpLocation LocationCode="DFW"/>
        </VehRentalCore>
        <VendorPrefs>
            <VendorPref Code="ZE"/>
        </VendorPrefs>
    </VehResRQCore>
</OTA_VehResRQ>
<!--Reserve a vehicle and request written confirmation.-->
<!--Equivalent Sabre host command: 0CARZENN1DFW21DEC-24DEC/SCAR/ARR-1000/RET-1200/W- -->
<OTA_VehResRQ Version="2.2.0" xmlns="http://webservices.sabre.com/sabreXML/2011/10" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <VehResRQCore>
        <SpecialPrefs WrittenConfirmation="true"/>
        <VehPrefs>
            <VehPref>
                <VehType>SCAR</VehType>
            </VehPref>
        </VehPrefs>
        <VehRentalCore PickUpDateTime="12-21T10:00" Quantity="1" ReturnDateTime="12-24T12:00">
            <PickUpLocation LocationCode="DFW"/>
        </VehRentalCore>
        <VendorPrefs>
            <VendorPref Code="ZE"/>
        </VendorPrefs>
    </VehResRQCore>
</OTA_VehResRQ>
<!--Reserve a vehicle and specify invoice remarks.-->
<!--Equivalent Sabre host command: 0CARZENN1DFW21DEC-24DEC/SCAR/ARR-1000/RET-1200/IR-TEST REMARK-->
<OTA_VehResRQ Version="2.2.0" xmlns="http://webservices.sabre.com/sabreXML/2011/10" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <VehResRQCore>
        <SpecialPrefs>
            <InvoiceRemarks>
                <Text>TEST REMARK</Text>
            </InvoiceRemarks>
        </SpecialPrefs>
        <VehPrefs>
            <VehPref>
                <VehType>SCAR</VehType>
            </VehPref>
        </VehPrefs>
        <VehRentalCore PickUpDateTime="12-21T10:00" Quantity="1" ReturnDateTime="12-24T12:00">
            <PickUpLocation LocationCode="DFW"/>
        </VehRentalCore>
        <VendorPrefs>
            <VendorPref Code="ZE"/>
        </VendorPrefs>
    </VehResRQCore>
</OTA_VehResRQ>
<!--Reserve a vehicle and specify miscellaneous information.-->
<!--Equivalent Sabre host command: 0CARZENN1DFW21DEC-24DEC/SCAR/ARR-1000/RET-1200/SI-WANTS A BLUE CAR-->
<OTA_VehResRQ Version="2.2.0" xmlns="http://webservices.sabre.com/sabreXML/2011/10" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <VehResRQCore>
        <SpecialPrefs>
            <Text>WANTS A BLUE CAR</Text>
        </SpecialPrefs>
        <VehPrefs>
            <VehPref>
                <VehType>SCAR</VehType>
            </VehPref>
        </VehPrefs>
        <VehRentalCore PickUpDateTime="12-21T10:00" Quantity="1" ReturnDateTime="12-24T12:00">
            <PickUpLocation LocationCode="DFW"/>
        </VehRentalCore>
        <VendorPrefs>
            <VendorPref Code="ZE"/>
        </VendorPrefs>
    </VehResRQCore>
</OTA_VehResRQ>
<!--Reserve a vehicle and specify a vendor phone number.-->
<!--Equivalent Sabre host command: 0CARZENN1DFW21DEC-24DEC/SCAR/ARR-1000/RET-1200/PH-8175551212-->
<OTA_VehResRQ Version="2.2.0" xmlns="http://webservices.sabre.com/sabreXML/2011/10" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <VehResRQCore>
        <VehPrefs>
            <VehPref>
                <VehType>SCAR</VehType>
            </VehPref>
        </VehPrefs>
        <VehRentalCore PickUpDateTime="12-21T10:00" Quantity="1" ReturnDateTime="12-24T12:00">
            <PickUpLocation LocationCode="DFW"/>
        </VehRentalCore>
        <VendorPrefs>
            <VendorPref Code="ZE" Phone="8175551212"/>
        </VendorPrefs>
    </VehResRQCore>
</OTA_VehResRQ>
<!--Perform vehicle short sell/Specify a line number in a OTA_VehAvailRateLLSRQ response to sell from. Sell two vehicles.-->
<!--Equivalent Sabre host command: 0C1‡2-->
<OTA_VehResRQ Version="2.2.0" xmlns="http://webservices.sabre.com/sabreXML/2011/10" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <VehResRQCore>
        <VehRentalCore Quantity="2" RPH="1">
        </VehRentalCore>
    </VehResRQCore>
</OTA_VehResRQ>
<!--Perform vehicle short sell with additional parameters.-->
<!--Equivalent Sabre host command: 0C1/21DEC-24DEC/SCAR/ARR-1000/RET-1200/CAD-1234 TEST ADDRESS DALLAS TX 12345 US-->
<OTA_VehResRQ Version="2.2.0" xmlns="http://webservices.sabre.com/sabreXML/2011/10" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <VehResRQCore>
        <Customer>
            <Address>
                <CityName>DALLAS</CityName>
                <CountryCode>US</CountryCode>
                <PostalCode>12345</PostalCode>
                <StateCountyProv StateCode="TX"/>
                <StreetNmbr>1234 TEST ADDRESS</StreetNmbr>
            </Address>
        </Customer>
        <VehPrefs>
            <VehPref>
                <VehType>SCAR</VehType>
            </VehPref>
        </VehPrefs>
        <VehRentalCore PickUpDateTime="12-21T10:00" ReturnDateTime="12-24T12:00" RPH="1"/>
    </VehResRQCore>
</OTA_VehResRQ>
<!--Reserve a vehicle and specify a renter fax number.-->
<!--Equivalent Sabre host command: 0CARZENN1DFW21DEC-24DEC/SCAR/ARR-1000/RET-1200/CPH-8175551212/FX-8175551234-->
<OTA_VehResRQ Version="2.2.0" xmlns="http://webservices.sabre.com/sabreXML/2011/10" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <VehResRQCore>
        <Customer>
            <CollectionAddress Phone="8175551212"/>
            <FaxOrEmail>8175551234</FaxOrEmail>
        </Customer>
        <VehPrefs>
            <VehPref>
                <VehType>SCAR</VehType>
            </VehPref>
        </VehPrefs>
        <VehRentalCore PickUpDateTime="12-21T10:00" Quantity="1" ReturnDateTime="12-24T12:00">
            <PickUpLocation LocationCode="DFW"/>
        </VehRentalCore>
        <VendorPrefs>
            <VendorPref Code="ZE"/>
        </VendorPrefs>
    </VehResRQCore>
</OTA_VehResRQ>
<!--Reserve a vehicle and specify an e-mail address.-->
<!--Equivalent Sabre host command: 0CARZENN1DFW21DEC-24DEC/SCAR/ARR-1000/RET-1200/CPH-8175551212/FX-SWS.TEST‡SABRE.COM-->
<OTA_VehResRQ Version="2.2.0" xmlns="http://webservices.sabre.com/sabreXML/2011/10" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <VehResRQCore>
        <Customer>
            <CollectionAddress Phone="8175551212"/>
            <FaxOrEmail>SWS.TEST@SABRE.COM</FaxOrEmail>
        </Customer>
        <VehPrefs>
            <VehPref>
                <VehType>SCAR</VehType>
            </VehPref>
        </VehPrefs>
        <VehRentalCore PickUpDateTime="12-21T10:00" Quantity="1" ReturnDateTime="12-24T12:00">
            <PickUpLocation LocationCode="DFW"/>
        </VehRentalCore>
        <VendorPrefs>
            <VendorPref Code="ZE"/>
        </VendorPrefs>
    </VehResRQCore>
</OTA_VehResRQ>
Sample Response
<?xml version="1.0" encoding="UTF-8"?>
<!--Pre-Conditions: a PNR containing at least one passenger name must be in the work area/session.-->
<OTA_VehResRS xmlns="http://webservices.sabre.com/sabreXML/2011/10" Version="2.2.0" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:stl="http://services.sabre.com/STL/v01">
    <stl:ApplicationResults status="Complete">
        <stl:Success timeStamp="2019-01-12T11:58:32-05:00"/>
        <stl:Warning type="BusinessLogic">
            <stl:SystemSpecificResults>
                <stl:Message>APPROX TTL INC TAX-TRF-AP SVC CHG-VLCR</stl:Message>
                <stl:Message>MIN AGE 20 - MOST CAR CLASSES. 20-24 RATE DIFFERENTIAL APPLIES</stl:Message>
                <stl:Message>FOR RENTERS UNDER 25 YRS OF AGE SEE KEYWORD AGE</stl:Message>
                <stl:Message>EXTRA DAY CHARGES APPLY AFTER 2300 MONDAY</stl:Message>
                <stl:Message>CONFIRMED NISSAN ALTIMA 2-DOOR OR SIMILAR</stl:Message>
                <stl:Message>THANKS FOR SUPPORTING HERTZ FOR HEROES FOR OUR TROOP</stl:Message>
                <stl:ShortText>WARN.SWS.HOST.WARNING_RESPONSE</stl:ShortText>
            </stl:SystemSpecificResults>
        </stl:Warning>
    </stl:ApplicationResults>
    <Vehicle SegmentNumber="3" Status="HK">
        <VehRentalCore PickUpDateTime="12-21T10:00" Quantity="1" ReturnDateTime="12-24T12:00">
            <LocationDetails LocationCode="DFW"/>
        </VehRentalCore>
        <VehVendorAvail>
            <VehResCore>
                <PricedEquip>
                    <Equipment EquipType="SCAR" Quantity="1"/>
                </PricedEquip>
                <ReferenceInfo>
                    <Reference Number="972-453-4600">
                        <Qualifier>PH NBR PHONE NUMBER</Qualifier>
                    </Reference>
                </ReferenceInfo>
                <RentalRate Changed="C" GuaranteedQuoted="G" STM_RatePlan="¤MCLE">
                    <ConfirmationNumber>F456A225475</ConfirmationNumber>
                    <Vehicle>
                        <VehType>SCAR</VehType>
                    </Vehicle>
                </RentalRate>
                <VehicleCharges>
                    <VehicleCharge>
                        <ChargeDetails>
                            <ApproximateTotalCharge Amount="29.49" MileageAllowance="UNL" RateType="WEEKEND RATE"/>
                            <ApproximateTotalCharge Amount="14.75" MileageAllowance="UNL" RateType="EXTRA HOUR"/>
                            <ApproximateTotalCharge Amount="70.49" MileageAllowance="UNL" RateType="EXTRA DAY"/>
                            <ApproximateTotalCharge Amount="185.92" MileageAllowance="UNL" NumDays="4" NumHours="0" RateType="APPROXIMATE TOTAL PRICE" TotalMandatoryCharges="67.96"/>
                        </ChargeDetails>
                        <Mileage CurrencyCode="USD"/>
                    </VehicleCharge>
                </VehicleCharges>
            </VehResCore>
        </VehVendorAvail>
    </Vehicle>
</OTA_VehResRS>