IATA_OrderRetrieveRQ

Introduction

The IATA_OrderRetrieveRQ is used to retrieve an existing Order.

General Usage

The only parameter in the IATA_OrderRetrieveRQ is the OrderID of the Order, that should be retrieved.

If the ID is not known by the client, it can be searched via IATA_OrderListRQ/RS.

It is also possible, if supported by the airline reservation system, to retrieve older versions of bookings.

Sample

IATA_OrderRetrieveRQ

Retrieve with external reference

Show/Hide Request

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<IATA_OrderRetrieveRQ
   xmlns="http://www.iata.org/IATA/2015/00/2019.2/IATA_OrderRetrieveRQ">
   <Party>
      <Sender>
         <EnabledSystem>
            <SystemID>12345</SystemID>
         </EnabledSystem>
      </Sender>
   </Party>
   <Request>
      <OrderFilterCriteria>
         <Order>
            <OrderID>1234567</OrderID>
            <OwnerCode>NA</OwnerCode>
         </Order>
      </OrderFilterCriteria>
   </Request>
</IATA_OrderRetrieveRQ>

Retrieve with external reference, passenger and flight-data

Show/Hide Request

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<IATA_OrderRetrieveRQ
        xmlns="http://www.iata.org/IATA/2015/00/2019.2/IATA_OrderRetrieveRQ">
    <Party>
        <Sender>
            <EnabledSystem>
                <SystemID>12345</SystemID>
            </EnabledSystem>
        </Sender>
    </Party>
    <Request>
        <OrderFilterCriteria>
            <FlightFilterCriteria>
                <OriginDestFilterCriteria>
                    <Arrival>
                        <ArrivalDate>2025-05-28</ArrivalDate>
                        <StationCode>FRA</StationCode>
                    </Arrival>
                    <Dep>
                        <DepDate>2025-05-21</DepDate>
                        <StationCode>AYT</StationCode>
                    </Dep>
                </OriginDestFilterCriteria>
            </FlightFilterCriteria>
            <Order>
                <OrderID>1234567</OrderID>
                <OwnerCode>NA</OwnerCode>
            </Order>
            <PaxFilterCriteria>
                <Individual>
                    <GivenName>John</GivenName>
                    <Surname>Doe</Surname>
                </Individual>
                <PaxID>PX1</PaxID>
            </PaxFilterCriteria>
        </OrderFilterCriteria>
    </Request>
</IATA_OrderRetrieveRQ>