Skip Navigation

Create Booking From Trip Proposal

1.1.0
Air
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 Create Booking From Trip Proposal (TP_BookRQ) serviceĀ is used to create a real TripĀ (PNR) from selected Trip Proposal options.

Target Audience
Travel Agency
API Version
1.1.0
Authentication
Session Token
Service Action Code
TP_BookRQ

Book Trip Proposal Service is used to convert chosen options from Trip Proposal document into real reservation PNR. Service can be used in stateful and stateless mode - however when using ATK token for authentication only stateless mode is available. Following data elements from Trip Proposal can be added to PNR:

  • Passenger Data
  • Passenger data from Sabre Profiles
  • Received From
  • DK Number
  • PQ

Options can be booked to existing PNR and PNR can also be placed on a specified queue. Book Trip Proposal Service does not support Active Sabre GDS Hotel content.

Sample Request
<?xml version="1.0" encoding="UTF-8"?>
<TP_BookRQ xmlns="http://services.sabre.com/tripproposal/v1_0" version="1.0.0">
    <BookingOptions movePassengerDetails="true" moveReceivedFrom="true" moveDKNumber="true" moveTicketingTimeLimit="true">
        <RequestType>Stateless</RequestType>
    </BookingOptions>
    <TripProposalReference>
        <TripProposalID>YQT6USMOMN</TripProposalID>
        <QuoteID>QID-2</QuoteID>
    </TripProposalReference>
</TP_BookRQ>
Sample Response
<TP_BookRS xmlns="http://services.sabre.com/tripproposal/v1_1" xmlns:stl="http://services.sabre.com/STL_Payload/v02_02">
    <stl:ApplicationResults status="Complete">
        <stl:Success timeStamp="2017-08-29T01:55:09.295-05:00"/>
    </stl:ApplicationResults>
    <BookingResult>
        <PnrLocator>MLHIEY</PnrLocator>
        <BookingStatus optionID="OID-3" optionStatus="BOOKED">
            <ProductStatus productID="TP-4" productStatus="BOOKED"/>
        </BookingStatus>
        <BookingStatus optionID="OID-4" optionStatus="BOOKED">
            <ProductStatus productID="TP-5" productStatus="BOOKED"/>
        </BookingStatus>
    </BookingResult>
</TP_BookRS>