Skip Navigation

Modify Car Reservation

2.2.1
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.

The Modify Car Reservation (VehResModifyLLSRQ) API is used to modify a confirmed vehicle segment in a passenger name record (PNR).

Target Audience
Travel Agency
API Version
2.2.1
Authentication
Session Token
Service Action Code
VehResModifyLLSRQ

Using this API, you can change many elements of a confirmed reservation including:

  • Modify a confirmed vehicle reservation to add or modify a name, number, customer address
  • add or modify a billing number
  • add or modify a billing reference
  • add or modify a collection site ID
  • add or modify a collection site name
  • add or modify a collection phone number
  • add or modify a customer collection address
  • add or modify a delivery site ID
  • add or modify a delivery site name
  • add or modify a delivery phone number
  • add or modify a customer delivery address
  • add or modify the booking agent
  • add or modify the booking source
  • add or modify a rate code
  • add or modify a corporate ID
  • add or modify a frequent flyer number
  • add or modify a drop off charge
  • add or modify an ID number
  • add or modify a promotion code
  • add or modify a rate override
  • add or modify a tour code
  • add or modify a credit card guarantee
  • add or modify a guarantee
  • add or modify a voucher
  • add or modify special equipment
  • add or modify miscellaneous information
  • add or modify an extended location code
  • add or modify arrival flight information
  • modify the pick-up date/time
  • modify the pick-up date
  • modify the pick-up time
  • add pick up point-related information
  • add drop off-related information
  • request written confirmation

 

There are several other parameters included in this API, too. Please refer to the sample payload for this API for additional information.

Sample Request
<!--Modify a confirmed vehicle reservation to add or modify a customer address.-->
<!--Equivalent Sabre host command: CM1/CAD-1234 TEST ADDRESS DALLAS TX 12345 US-->
<VehResModifyRQ Version="2.2.1" 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 RPH="1">
        <Customer>
            <Address>
                <CityName>DALLAS</CityName>
                <CountryCode>US</CountryCode>
                <PostalCode>12345</PostalCode>
                <StateCountyProv StateCode="TX"/>
                <StreetNmbr>1234 TEST ADDRESS</StreetNmbr>
            </Address>
        </Customer>
    </VehResRQCore>
</VehResModifyRQ>
Sample Response
<VehResModifyRS xmlns="http://webservices.sabre.com/sabreXML/2011/10" Version="2.2.1" 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="2020-12-02T11: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>
</VehResModifyRS>