Skip Navigation

Modify Hotel Reservation

2.1.1
Hotel
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 Hotel Reservation (HotelResModifyLLSRQ) API is used to modify a confirmed hotel segment in a passenger name record (PNR).

Warning! This API will be deprecated in September 2024 - please migrate your solution to Content Services for Lodging APIs.

Target Audience
Travel Agency
API Version
2.1.1
Authentication
Session Token
Service Action Code
HotelResModifyLLSRQ

Using this API, you can update a confirmed hotel segment to:

  • modify the confirmation number
  • the passenger name number association
  • modify a corporate ID
  • modify a frequent flyer number
  • modify a client ID
  • modify the guarantee 1, 2
  • modify the number of cribs
  • modify the number of extra guests
  • modify the number of rollaways
  • modify the requestor ID associated with the reservation
  • modify the rate code associated with the reservation
  • modify or add special preference-related information
  • request written confirmation from the hotelier
  • modify the stay dates associated with the reservation
  • modify or add the arrival/departure times associated with the reservation

.
Please note that GetReservationRQ must be executed prior to calling HotelResModifyLLSRQ.

 

Sample Request
<HotelResModifyRQ Version="2.1.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">
    <Hotel>
        <BasicPropertyInfo RPH="2">
            <ConfirmationNumber>ABC123</ConfirmationNumber>
        </BasicPropertyInfo>
    </Hotel>
</HotelResModifyRQ>
Sample Response
<HotelResModifyRS xmlns="http://webservices.sabre.com/sabreXML/2011/10" Version="2.1.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="2013-04-16T10:45:00-06:00"/>
    </stl:ApplicationResults>
    <Hotel NumberInParty="2" NumberOfUnits="1" SegmentNumber="4" Status="HK">
        <BasicPropertyInfo ChainCode="HG" HotelCityCode="DFW" HotelCode="24551" HotelName="HOMEWOOD SUITES DAL">
            <CancelPenalty PolicyCode="C24H"/>
        </BasicPropertyInfo>
        <Guarantee>XX4000000000006EXP 12 12-TEST</Guarantee>
        <RoomRates>
            <Rate Amount="149.00" CurrencyCode="USD" DCS_AuxRateCode="A03LV2">
                <AdditionalGuestAmounts>
                    <AdditionalGuestAmount>
                        <Charges CurrencyCode="USD"/>
                    </AdditionalGuestAmount>
                </AdditionalGuestAmounts>
            </Rate>
        </RoomRates>
        <SpecialPrefs>
            <WrittenConfirmation Ind="false"/>
        </SpecialPrefs>
        <Text>24551 ARR21NOV 24 HR CANCELLATION REQUIRED</Text>
        <Text>24551 ARR21NOV GUARANTEED BY CREDIT CARD</Text>
        <Text>RATE CHG 23NOV: 99.00</Text>
        <Text>HOMEWOOD SUITES BROWNSVILLE TEXAS</Text>
        <Text>OFFERING DISCOUNTED WEEKDAY AND WEEKEND RATES</Text>
        <TimeSpan Duration="3" End="11-24" Start="11-21"/>
    </Hotel>
</HotelResModifyRS>