OrderRetrieve operation

The order retrieve method allows to get booking information after order creation. The order ID must be sent in request to be able to retrieve information from the airline system.


Table of contents

  1. Release notes
  2. Mandatory HTTP header
  3. OrderRetrieveRQ
  4. OrderRetrieve - OrderViewRS
  5. Samples

Release notes

VersionNotes
1.0Initial version.

Mandatory HTTP header

  • AuthToken: token value retrieved from login response

OrderRetrieveRQ

ElementDescriptionOptional/Mandatory
PartyMust contain agency ID as senderMandatory
PayloadAttributesVersion + CorrelationID (to group log messages)Optional
RequestThe request element detailed belowMandatory

Request

ElementDescriptionOptional/Mandatory
OrderFilterCriteriaThe order filter criteria belowMandatory

OrderFilterCriteria

ElementDescriptionOptional/Mandatory
OrderMust contain the ID of order to retrieveMandatory

OrderRetrieve - OrderViewRS

ElementDescriptionOptional/Mandatory
PayloadAttributesSame as requested + timestampMandatory
ResponseThe response element detailed belowMandatory

Response

ElementDescriptionOptional/Mandatory
WarningList of warnings returned by provider, see warningsOptional
DataListsThe response data lists (journeys, segments, service definitions, etc)Mandatory
OrderThe order element detailed belowMandatory

Order

ElementDescriptionOptional/Mandatory
OrderIDThe order ID (same as requested)Mandatory
BookingRefsList of booking referencesMandatory
StatusCodeThe order status
  • OPENED: order confirmed
  • FROZEN: on request (order to be confirmed)
  • CLOSED: order cancelled
Mandatory
TotalPriceThe total price of the whole orderMandatory
OrderItemsList of order items detailed belowMandatory

OrderItem

ElementDescriptionOptional/Mandatory
OrderItemIDID of the order itemMandatory
PaymentTimeLimitDateTimeThe ticketing time limit (only if payment must be done)Optional
PriceGuaranteeTimeLimitDateTimeThe price guarantee time limit (only if payment must be done)Optional
FareDetailContains the PAX associations, the unit price in FarePriceType, and more information for each segment in FareComponentMandatory
PriceThe total price of this offer itemMandatory
SellerFollowUpActionList of post-booking actions required, to accept schedule change for example. Action codes:
  • Contact Airline
  • Accept
Optional
ServicesList of flight/serviceDefinition associations with PAX and StatusCode:
  • RQ: on request (availability is waiting to be confirmed, OrderRetrieveRQ has to be called again until status is updated)
  • K: pending (OrderChangeRQ has to be executed to issue tickets)
  • SB: issuance in progress (waiting to be confirmed, OrderRetrieveRQ has to be called again until status is updated)
  • TK: schedule change (see possible actions in SellerFollowUpAction node)
  • T: tickets issued
  • X: cancelled
Note: If the StatusCode is absent, the service is included, so no further action is necessary
Mandatory

Warning

ElementDescriptionOptional/Mandatory
CodeThe status code of the warning
Spanish residents:
  • RESIDENCY_VERIFICATION_STATUS
Mandatory
DescTextThe description of the warning
Spanish residents:
  • <passenger_name> - NOT_VERIFIED
  • <passenger_name> - PENDING
Mandatory

Samples

OrderRetrieveRQ
<?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>
            <TravelAgency>
                <AgencyID>agency1234</AgencyID>
            </TravelAgency>
        </Sender>
    </Party>
    <PayloadAttributes>
        <CorrelationID>c3421ac5-96cd-3aed-b40b-aca63b056173</CorrelationID>
        <VersionNumber>19.2</VersionNumber>
    </PayloadAttributes>
    <Request>
        <OrderFilterCriteria>
            <Order>
                <OrderID>544759</OrderID>
                <OwnerCode>BA</OwnerCode>
            </Order>
        </OrderFilterCriteria>
    </Request>
</IATA_OrderRetrieveRQ>
OrderViewRS
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<IATA_OrderViewRS xmlns="http://www.iata.org/IATA/2015/00/2019.2/IATA_OrderViewRS">
    <Response>
        <DataLists>
            <OriginDestList>
                <OriginDest>
                    <DestCode>BCN</DestCode>
                    <OriginCode>LHR</OriginCode>
                    <OriginDestID>OD1</OriginDestID>
                    <PaxJourneyRefID>PJ1</PaxJourneyRefID>
                </OriginDest>
                <OriginDest>
                    <DestCode>LHR</DestCode>
                    <OriginCode>BCN</OriginCode>
                    <OriginDestID>OD2</OriginDestID>
                    <PaxJourneyRefID>PJ3</PaxJourneyRefID>
                </OriginDest>
            </OriginDestList>
            <PaxJourneyList>
                <PaxJourney>
                    <Duration>P0Y0M0DT2H5M0S</Duration>
                    <PaxJourneyID>PJ1</PaxJourneyID>
                    <PaxSegmentRefID>SEG1</PaxSegmentRefID>
                </PaxJourney>
                <PaxJourney>
                    <Duration>P0Y0M0DT2H15M0S</Duration>
                    <PaxJourneyID>PJ3</PaxJourneyID>
                    <PaxSegmentRefID>SEG3</PaxSegmentRefID>
                </PaxJourney>
            </PaxJourneyList>
            <PaxList>
                <Pax>
                    <Birthdate>1986-01-01</Birthdate>
                    <ContactInfoRefID>CONT1</ContactInfoRefID>
                    <PaxID>PAX1</PaxID>
                    <PTC>ADT</PTC>
                </Pax>
                <Pax>
                    <Birthdate>1986-02-02</Birthdate>
                    <ContactInfoRefID>CONT1</ContactInfoRefID>
                    <PaxID>PAX2</PaxID>
                    <PTC>ADT</PTC>
                </Pax>
            </PaxList>
            <PaxSegmentList>
                <PaxSegment>
                    <Arrival>
                        <AircraftScheduledDateTime>2021-06-01T22:20:00</AircraftScheduledDateTime>
                        <IATA_LocationCode>BCN</IATA_LocationCode>
                        <TerminalName>1</TerminalName>
                    </Arrival>
                    <DatedOperatingLeg>
                        <Arrival/>
                        <CarrierAircraftType>
                            <CarrierAircraftTypeCode>320</CarrierAircraftTypeCode>
                        </CarrierAircraftType>
                        <Dep/>
                    </DatedOperatingLeg>
                    <Dep>
                        <AircraftScheduledDateTime>2021-06-01T19:15:00</AircraftScheduledDateTime>
                        <IATA_LocationCode>LHR</IATA_LocationCode>
                        <TerminalName>3</TerminalName>
                    </Dep>
                    <Duration>P0Y0M0DT2H5M0S</Duration>
                    <MarketingCarrierInfo>
                        <CarrierDesigCode>BA</CarrierDesigCode>
                        <MarketingCarrierFlightNumberText>0482</MarketingCarrierFlightNumberText>
                    </MarketingCarrierInfo>
                    <OperatingCarrierInfo>
                        <CarrierDesigCode>BA</CarrierDesigCode>
                    </OperatingCarrierInfo>
                    <PaxSegmentID>SEG1</PaxSegmentID>
                </PaxSegment>
                <PaxSegment>
                    <Arrival>
                        <AircraftScheduledDateTime>2021-06-10T21:55:00</AircraftScheduledDateTime>
                        <IATA_LocationCode>LHR</IATA_LocationCode>
                        <TerminalName>3</TerminalName>
                    </Arrival>
                    <DatedOperatingLeg>
                        <Arrival/>
                        <CarrierAircraftType>
                            <CarrierAircraftTypeCode>320</CarrierAircraftTypeCode>
                        </CarrierAircraftType>
                        <Dep/>
                    </DatedOperatingLeg>
                    <Dep>
                        <AircraftScheduledDateTime>2021-06-10T20:40:00</AircraftScheduledDateTime>
                        <IATA_LocationCode>BCN</IATA_LocationCode>
                        <TerminalName>1</TerminalName>
                    </Dep>
                    <Duration>P0Y0M0DT2H15M0S</Duration>
                    <MarketingCarrierInfo>
                        <CarrierDesigCode>BA</CarrierDesigCode>
                        <MarketingCarrierFlightNumberText>0487</MarketingCarrierFlightNumberText>
                    </MarketingCarrierInfo>
                    <OperatingCarrierInfo>
                        <CarrierDesigCode>BA</CarrierDesigCode>
                    </OperatingCarrierInfo>
                    <PaxSegmentID>SEG3</PaxSegmentID>
                </PaxSegment>
            </PaxSegmentList>
            <PriceClassList>
                <PriceClass>
                    <CabinType>
                        <CabinTypeName>ECONOMY</CabinTypeName>
                    </CabinType>
                    <Desc>
                        <DescText>Bagage à main uniquement</DescText>
                    </Desc>
                    <Desc>
                        <DescText>Sièges attribués ou payez pour choisir votre siège quand vous le souhaitez</DescText>
                    </Desc>
                    <Desc>
                        <DescText>Dernier à embarquer</DescText>
                    </Desc>
                    <Name>BASIC</Name>
                    <PriceClassID>PC1</PriceClassID>
                </PriceClass>
            </PriceClassList>
        </DataLists>
        <Order>
            <BookingRef>
                <BookingEntity>
                    <Carrier>
                        <AirlineDesigCode>BA</AirlineDesigCode>
                    </Carrier>
                </BookingEntity>
                <BookingID>T79BPA</BookingID>
            </BookingRef>
            <BookingRef>
                <BookingEntity>
                    <Org>
                        <OrgID>ORCHESTRA</OrgID>
                    </Org>
                </BookingEntity>
                <BookingID>BA-T79BPA</BookingID>
            </BookingRef>
            <OrderID>544759</OrderID>
            <OrderItem>
                <FareDetail>
                    <FareComponent>
                        <CabinType>
                            <CabinTypeCode>O</CabinTypeCode>
                            <CabinTypeName>ECONOMY</CabinTypeName>
                        </CabinType>
                        <PaxSegmentRefID>SEG1</PaxSegmentRefID>
                        <PriceClassRefID>PC1</PriceClassRefID>
                    </FareComponent>
                    <FareComponent>
                        <CabinType>
                            <CabinTypeCode>L</CabinTypeCode>
                            <CabinTypeName>ECONOMY</CabinTypeName>
                        </CabinType>
                        <PaxSegmentRefID>SEG3</PaxSegmentRefID>
                        <PriceClassRefID>PC1</PriceClassRefID>
                    </FareComponent>
                    <FarePriceType>
                        <Price>
                            <BaseAmount CurCode="EUR">162.00000000000000000000</BaseAmount>
                            <TotalAmount CurCode="EUR">162.00000000000000000000</TotalAmount>
                        </Price>
                    </FarePriceType>
                    <PaxRefID>PAX2</PaxRefID>
                </FareDetail>
                <OrderItemID>8c51dabc-00a2-4377-8f9d-5e022c61c4de</OrderItemID>
                <PaymentTimeLimitDateTime>2021-02-05T00:59:00.000</PaymentTimeLimitDateTime>
                <Price>
                    <BaseAmount CurCode="EUR">162.00000000000000000000</BaseAmount>
                    <TotalAmount CurCode="EUR">162.00000000000000000000</TotalAmount>
                </Price>
                <Service>
                    <PaxRefID>PAX2</PaxRefID>
                    <ServiceAssociations>
                        <PaxSegmentRefID>SEG1</PaxSegmentRefID>
                    </ServiceAssociations>
                    <ServiceID>SV373</ServiceID>
                    <StatusCode>K</StatusCode>
                </Service>
                <Service>
                    <PaxRefID>PAX2</PaxRefID>
                    <ServiceAssociations>
                        <PaxSegmentRefID>SEG3</PaxSegmentRefID>
                    </ServiceAssociations>
                    <ServiceID>SV374</ServiceID>
                    <StatusCode>K</StatusCode>
                </Service>
            </OrderItem>
            <OrderItem>
                <FareDetail>
                    <FareComponent>
                        <CabinType>
                            <CabinTypeCode>O</CabinTypeCode>
                            <CabinTypeName>ECONOMY</CabinTypeName>
                        </CabinType>
                        <PaxSegmentRefID>SEG1</PaxSegmentRefID>
                        <PriceClassRefID>PC1</PriceClassRefID>
                    </FareComponent>
                    <FareComponent>
                        <CabinType>
                            <CabinTypeCode>L</CabinTypeCode>
                            <CabinTypeName>ECONOMY</CabinTypeName>
                        </CabinType>
                        <PaxSegmentRefID>SEG3</PaxSegmentRefID>
                        <PriceClassRefID>PC1</PriceClassRefID>
                    </FareComponent>
                    <FarePriceType>
                        <Price>
                            <BaseAmount CurCode="EUR">162.00000000000000000000</BaseAmount>
                            <TotalAmount CurCode="EUR">162.00000000000000000000</TotalAmount>
                        </Price>
                    </FarePriceType>
                    <PaxRefID>PAX1</PaxRefID>
                </FareDetail>
                <OrderItemID>526094de-889e-4914-92f3-bf19e3f62b14</OrderItemID>
                <PaymentTimeLimitDateTime>2021-02-05T00:59:00.000</PaymentTimeLimitDateTime>
                <Price>
                    <BaseAmount CurCode="EUR">162.00000000000000000000</BaseAmount>
                    <TotalAmount CurCode="EUR">162.00000000000000000000</TotalAmount>
                </Price>
                <Service>
                    <PaxRefID>PAX1</PaxRefID>
                    <ServiceAssociations>
                        <PaxSegmentRefID>SEG1</PaxSegmentRefID>
                    </ServiceAssociations>
                    <ServiceID>SV375</ServiceID>
                    <StatusCode>K</StatusCode>
                </Service>
                <Service>
                    <PaxRefID>PAX1</PaxRefID>
                    <ServiceAssociations>
                        <PaxSegmentRefID>SEG3</PaxSegmentRefID>
                    </ServiceAssociations>
                    <ServiceID>SV376</ServiceID>
                    <StatusCode>K</StatusCode>
                </Service>
            </OrderItem>
            <OrderItem>
                <FareDetail>
                    <FareComponent>
                        <CabinType>
                            <CabinTypeCode>O</CabinTypeCode>
                            <CabinTypeName>ECONOMY</CabinTypeName>
                        </CabinType>
                        <PaxSegmentRefID>SEG1</PaxSegmentRefID>
                        <PriceClassRefID>PC1</PriceClassRefID>
                    </FareComponent>
                    <FareComponent>
                        <CabinType>
                            <CabinTypeCode>L</CabinTypeCode>
                            <CabinTypeName>ECONOMY</CabinTypeName>
                        </CabinType>
                        <PaxSegmentRefID>SEG3</PaxSegmentRefID>
                        <PriceClassRefID>PC1</PriceClassRefID>
                    </FareComponent>
                    <FarePriceType>
                        <Price>
                            <BaseAmount>0</BaseAmount>
                            <TaxSummary>
                                <Tax>
                                    <Amount CurCode="EUR">61.96000000000000000000</Amount>
                                    <TaxCode>GENERAL_TAXES_PAX_2</TaxCode>
                                    <TaxName>Taxes - PAX2</TaxName>
                                </Tax>
                                <TotalTaxAmount CurCode="EUR">61.96000000000000000000</TotalTaxAmount>
                            </TaxSummary>
                            <TotalAmount CurCode="EUR">61.96000000000000000000</TotalAmount>
                        </Price>
                    </FarePriceType>
                    <PaxRefID>PAX2</PaxRefID>
                </FareDetail>
                <OrderItemID>edae5606-df2e-41cc-8d8d-d6959c7078d7</OrderItemID>
                <PaymentTimeLimitDateTime>2021-02-05T00:59:00.000</PaymentTimeLimitDateTime>
                <Price>
                    <BaseAmount>0</BaseAmount>
                    <TotalAmount CurCode="EUR">61.96000000000000000000</TotalAmount>
                </Price>
                <Service>
                    <PaxRefID>PAX2</PaxRefID>
                    <ServiceAssociations>
                        <PaxSegmentRefID>SEG1</PaxSegmentRefID>
                    </ServiceAssociations>
                    <ServiceID>SV377</ServiceID>
                    <StatusCode>K</StatusCode>
                </Service>
                <Service>
                    <PaxRefID>PAX2</PaxRefID>
                    <ServiceAssociations>
                        <PaxSegmentRefID>SEG3</PaxSegmentRefID>
                    </ServiceAssociations>
                    <ServiceID>SV378</ServiceID>
                    <StatusCode>K</StatusCode>
                </Service>
            </OrderItem>
            <OrderItem>
                <FareDetail>
                    <FareComponent>
                        <CabinType>
                            <CabinTypeCode>O</CabinTypeCode>
                            <CabinTypeName>ECONOMY</CabinTypeName>
                        </CabinType>
                        <PaxSegmentRefID>SEG1</PaxSegmentRefID>
                        <PriceClassRefID>PC1</PriceClassRefID>
                    </FareComponent>
                    <FareComponent>
                        <CabinType>
                            <CabinTypeCode>L</CabinTypeCode>
                            <CabinTypeName>ECONOMY</CabinTypeName>
                        </CabinType>
                        <PaxSegmentRefID>SEG3</PaxSegmentRefID>
                        <PriceClassRefID>PC1</PriceClassRefID>
                    </FareComponent>
                    <FarePriceType>
                        <Price>
                            <BaseAmount>0</BaseAmount>
                            <TaxSummary>
                                <Tax>
                                    <Amount CurCode="EUR">61.96000000000000000000</Amount>
                                    <TaxCode>GENERAL_TAXES_PAX_1</TaxCode>
                                    <TaxName>Taxes - PAX1</TaxName>
                                </Tax>
                                <TotalTaxAmount CurCode="EUR">61.96000000000000000000</TotalTaxAmount>
                            </TaxSummary>
                            <TotalAmount CurCode="EUR">61.96000000000000000000</TotalAmount>
                        </Price>
                    </FarePriceType>
                    <PaxRefID>PAX1</PaxRefID>
                </FareDetail>
                <OrderItemID>fe426dfe-70f2-42be-b9b0-8245a4d203f7</OrderItemID>
                <PaymentTimeLimitDateTime>2021-02-05T00:59:00.000</PaymentTimeLimitDateTime>
                <Price>
                    <BaseAmount>0</BaseAmount>
                    <TotalAmount CurCode="EUR">61.96000000000000000000</TotalAmount>
                </Price>
                <Service>
                    <PaxRefID>PAX1</PaxRefID>
                    <ServiceAssociations>
                        <PaxSegmentRefID>SEG1</PaxSegmentRefID>
                    </ServiceAssociations>
                    <ServiceID>SV379</ServiceID>
                    <StatusCode>K</StatusCode>
                </Service>
                <Service>
                    <PaxRefID>PAX1</PaxRefID>
                    <ServiceAssociations>
                        <PaxSegmentRefID>SEG3</PaxSegmentRefID>
                    </ServiceAssociations>
                    <ServiceID>SV380</ServiceID>
                    <StatusCode>K</StatusCode>
                </Service>
            </OrderItem>
            <OwnerCode>BA</OwnerCode>
            <StatusCode>OPENED</StatusCode>
            <TotalPrice>
                <BaseAmount CurCode="EUR">324.00000000000000000000</BaseAmount>
                <TaxSummary>
                    <Tax>
                        <Amount CurCode="EUR">61.96000000000000000000</Amount>
                        <TaxCode>GENERAL_TAXES_PAX_2</TaxCode>
                        <TaxName>Taxes - PAX2</TaxName>
                    </Tax>
                    <Tax>
                        <Amount CurCode="EUR">61.96000000000000000000</Amount>
                        <TaxCode>GENERAL_TAXES_PAX_1</TaxCode>
                        <TaxName>Taxes - PAX1</TaxName>
                    </Tax>
                    <TotalTaxAmount CurCode="EUR">123.92000000000000000000</TotalTaxAmount>
                </TaxSummary>
                <TotalAmount CurCode="EUR">447.92000000000000000000</TotalAmount>
            </TotalPrice>
        </Order>
    </Response>
    <PayloadAttributes>
        <CorrelationID>c3421ac5-96cd-3aed-b40b-aca63b056173</CorrelationID>
        <Timestamp>2021-02-04T10:27:17.922+01:00</Timestamp>
        <VersionNumber>19.2</VersionNumber>
    </PayloadAttributes>
</IATA_OrderViewRS>
OrderViewRS - Unverified passenger residency
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<IATA_OrderViewRS xmlns="http://www.iata.org/IATA/2015/00/2019.2/IATA_OrderViewRS">
    <Response>
        <DataLists>
            <ContactInfoList>
                <ContactInfo>
                    <ContactInfoID>CONT1</ContactInfoID>
                    <EmailAddress>
                        <EmailAddressText>email@email.com</EmailAddressText>
                    </EmailAddress>
                    <Phone>
                        <CountryDialingCode>34</CountryDialingCode>
                        <PhoneNumber>111111111</PhoneNumber>
                    </Phone>
                    <PostalAddress>
                        <CityName>Madrid</CityName>
                        <CountryCode>ES</CountryCode>
                        <PostalCode>21342</PostalCode>
                        <StreetText>Test Street</StreetText>
                    </PostalAddress>
                </ContactInfo>
            </ContactInfoList>
            <OriginDestList>
                <OriginDest>
                    <DestCode>MAD</DestCode>
                    <OriginCode>TFN</OriginCode>
                    <OriginDestID>OD1</OriginDestID>
                    <PaxJourneyRefID>PJ1</PaxJourneyRefID>
                </OriginDest>
                <OriginDest>
                    <DestCode>TFS</DestCode>
                    <OriginCode>BCN</OriginCode>
                    <OriginDestID>OD2</OriginDestID>
                    <PaxJourneyRefID>PJ2</PaxJourneyRefID>
                </OriginDest>
            </OriginDestList>
            <PaxJourneyList>
                <PaxJourney>
                    <Duration>P0Y0M0DT2H50M0S</Duration>
                    <PaxJourneyID>PJ1</PaxJourneyID>
                    <PaxSegmentRefID>SEG1</PaxSegmentRefID>
                </PaxJourney>
                <PaxJourney>
                    <Duration>P0Y0M0DT7H45M0S</Duration>
                    <PaxJourneyID>PJ2</PaxJourneyID>
                    <PaxSegmentRefID>SEG2</PaxSegmentRefID>
                    <PaxSegmentRefID>SEG3</PaxSegmentRefID>
                </PaxJourney>
            </PaxJourneyList>
            <PaxList>
                <Pax>
                    <Birthdate>1980-02-03+01:00</Birthdate>
                    <ContactInfoRefID>CONT1</ContactInfoRefID>
                    <IdentityDoc>
                        <IdentityDocID>30000529L</IdentityDocID>
                    </IdentityDoc>
                    <Individual>
                        <GivenName>STEFAN</GivenName>
                        <Surname>GARCIA</Surname>
                        <TitleName>MR</TitleName>
                    </Individual>
                    <PaxID>PAX1</PaxID>
                    <PTC>ADT</PTC>
                </Pax>
                <Pax>
                    <Birthdate>2017-03-03+01:00</Birthdate>
                    <ContactInfoRefID>CONT1</ContactInfoRefID>
                    <IdentityDoc>
                        <IdentityDocID>X2975617S</IdentityDocID>
                    </IdentityDoc>
                    <Individual>
                        <GivenName>MARIUS</GivenName>
                        <Surname>GARCIA</Surname>
                        <TitleName>MR</TitleName>
                    </Individual>
                    <PaxID>PAX2</PaxID>
                    <PTC>CHD</PTC>
                </Pax>
            </PaxList>
            <PaxSegmentList>
                <PaxSegment>
                    <Arrival>
                        <AircraftScheduledDateTime>2025-12-19T01:05:00.000+01:00</AircraftScheduledDateTime>
                        <IATA_LocationCode>MAD</IATA_LocationCode>
                        <TerminalName>4</TerminalName>
                    </Arrival>
                    <DatedOperatingLeg>
                        <Arrival/>
                        <CarrierAircraftType>
                            <CarrierAircraftTypeCode>32Q</CarrierAircraftTypeCode>
                            <CarrierAircraftTypeName>32Q</CarrierAircraftTypeName>
                        </CarrierAircraftType>
                        <DatedOperatingLegID>DOL1</DatedOperatingLegID>
                        <Dep/>
                    </DatedOperatingLeg>
                    <Dep>
                        <AircraftScheduledDateTime>2025-12-18T21:15:00.000+01:00</AircraftScheduledDateTime>
                        <IATA_LocationCode>TFN</IATA_LocationCode>
                    </Dep>
                    <Duration>P0Y0M0DT2H50M0S</Duration>
                    <MarketingCarrierInfo>
                        <CarrierDesigCode>IB</CarrierDesigCode>
                        <MarketingCarrierFlightNumberText>1586</MarketingCarrierFlightNumberText>
                    </MarketingCarrierInfo>
                    <OperatingCarrierInfo>
                        <CarrierDesigCode>I2</CarrierDesigCode>
                    </OperatingCarrierInfo>
                    <PaxSegmentID>SEG1</PaxSegmentID>
                </PaxSegment>
                <PaxSegment>
                    <Arrival>
                        <AircraftScheduledDateTime>2025-12-21T19:25:00.000+01:00</AircraftScheduledDateTime>
                        <IATA_LocationCode>MAD</IATA_LocationCode>
                        <TerminalName>4</TerminalName>
                    </Arrival>
                    <DatedOperatingLeg>
                        <Arrival/>
                        <CarrierAircraftType>
                            <CarrierAircraftTypeCode>320</CarrierAircraftTypeCode>
                            <CarrierAircraftTypeName>320</CarrierAircraftTypeName>
                        </CarrierAircraftType>
                        <DatedOperatingLegID>DOL2</DatedOperatingLegID>
                        <Dep/>
                    </DatedOperatingLeg>
                    <Dep>
                        <AircraftScheduledDateTime>2025-12-21T18:00:00.000+01:00</AircraftScheduledDateTime>
                        <IATA_LocationCode>BCN</IATA_LocationCode>
                        <TerminalName>1</TerminalName>
                    </Dep>
                    <Duration>P0Y0M0DT1H25M0S</Duration>
                    <MarketingCarrierInfo>
                        <CarrierDesigCode>IB</CarrierDesigCode>
                        <MarketingCarrierFlightNumberText>418</MarketingCarrierFlightNumberText>
                    </MarketingCarrierInfo>
                    <OperatingCarrierInfo>
                        <CarrierDesigCode>IB</CarrierDesigCode>
                    </OperatingCarrierInfo>
                    <PaxSegmentID>SEG2</PaxSegmentID>
                </PaxSegment>
                <PaxSegment>
                    <Arrival>
                        <AircraftScheduledDateTime>2025-12-22T00:45:00.000+01:00</AircraftScheduledDateTime>
                        <IATA_LocationCode>TFS</IATA_LocationCode>
                    </Arrival>
                    <DatedOperatingLeg>
                        <Arrival/>
                        <CarrierAircraftType>
                            <CarrierAircraftTypeCode>32A</CarrierAircraftTypeCode>
                            <CarrierAircraftTypeName>32A</CarrierAircraftTypeName>
                        </CarrierAircraftType>
                        <DatedOperatingLegID>DOL3</DatedOperatingLegID>
                        <Dep/>
                    </DatedOperatingLeg>
                    <Dep>
                        <AircraftScheduledDateTime>2025-12-21T22:45:00.000+01:00</AircraftScheduledDateTime>
                        <IATA_LocationCode>MAD</IATA_LocationCode>
                        <TerminalName>4</TerminalName>
                    </Dep>
                    <Duration>P0Y0M0DT3H0M0S</Duration>
                    <MarketingCarrierInfo>
                        <CarrierDesigCode>IB</CarrierDesigCode>
                        <MarketingCarrierFlightNumberText>1553</MarketingCarrierFlightNumberText>
                    </MarketingCarrierInfo>
                    <OperatingCarrierInfo>
                        <CarrierDesigCode>I2</CarrierDesigCode>
                    </OperatingCarrierInfo>
                    <PaxSegmentID>SEG3</PaxSegmentID>
                </PaxSegment>
            </PaxSegmentList>
            <PriceClassList>
                <PriceClass>
                    <CabinType/>
                    <PriceClassID>PC1</PriceClassID>
                </PriceClass>
            </PriceClassList>
        </DataLists>
        <Order>
            <BookingRef>
                <BookingEntity>
                    <Carrier>
                        <AirlineDesigCode>IB</AirlineDesigCode>
                    </Carrier>
                </BookingEntity>
                <BookingID>HJWF8</BookingID>
            </BookingRef>
            <OrderID>118736</OrderID>
            <OrderItem>
                <FareDetail>
                    <FareComponent>
                        <PaxSegmentRefID>SEG1</PaxSegmentRefID>
                        <PriceClassRefID>PC1</PriceClassRefID>
                    </FareComponent>
                    <FareComponent>
                        <PaxSegmentRefID>SEG2</PaxSegmentRefID>
                        <PaxSegmentRefID>SEG3</PaxSegmentRefID>
                        <PriceClassRefID>PC1</PriceClassRefID>
                    </FareComponent>
                    <FarePriceType>
                        <FarePriceTypeCode>70J</FarePriceTypeCode>
                        <Price>
                            <BaseAmount CurCode="EUR">86.10</BaseAmount>
                            <TaxSummary>
                                <Tax>
                                    <Amount CurCode="EUR">47.29</Amount>
                                    <TaxCode>GENERAL_TAXES_PAX_1</TaxCode>
                                    <TaxName>Taxes - PAX1</TaxName>
                                </Tax>
                                <TotalTaxAmount CurCode="EUR">47.29</TotalTaxAmount>
                            </TaxSummary>
                            <TotalAmount CurCode="EUR">133.39</TotalAmount>
                        </Price>
                    </FarePriceType>
                    <PaxRefID>PAX1</PaxRefID>
                </FareDetail>
                <OrderItemID>cebb456b-7316-58e0-be28-599d09edba5c</OrderItemID>
                <Price>
                    <BaseAmount CurCode="EUR">86.10</BaseAmount>
                    <TaxSummary>
                        <Tax>
                            <Amount CurCode="EUR">47.29</Amount>
                            <TaxCode>GENERAL_TAXES_PAX_1</TaxCode>
                            <TaxName>Taxes - PAX1</TaxName>
                        </Tax>
                        <TotalTaxAmount CurCode="EUR">47.29</TotalTaxAmount>
                    </TaxSummary>
                    <TotalAmount CurCode="EUR">133.39</TotalAmount>
                </Price>
                <Service>
                    <PaxRefID>PAX1</PaxRefID>
                    <ServiceAssociations>
                        <PaxSegmentRefID>SEG2</PaxSegmentRefID>
                    </ServiceAssociations>
                    <ServiceID>SV1</ServiceID>
                    <StatusCode>T</StatusCode>
                </Service>
                <Service>
                    <PaxRefID>PAX1</PaxRefID>
                    <ServiceAssociations>
                        <PaxSegmentRefID>SEG3</PaxSegmentRefID>
                    </ServiceAssociations>
                    <ServiceID>SV2</ServiceID>
                    <StatusCode>T</StatusCode>
                </Service>
                <Service>
                    <PaxRefID>PAX1</PaxRefID>
                    <ServiceAssociations>
                        <PaxSegmentRefID>SEG1</PaxSegmentRefID>
                    </ServiceAssociations>
                    <ServiceID>SV3</ServiceID>
                    <StatusCode>T</StatusCode>
                </Service>
            </OrderItem>
            <OrderItem>
                <FareDetail>
                    <FareComponent>
                        <PaxSegmentRefID>SEG1</PaxSegmentRefID>
                        <PriceClassRefID>PC1</PriceClassRefID>
                    </FareComponent>
                    <FareComponent>
                        <PaxSegmentRefID>SEG2</PaxSegmentRefID>
                        <PaxSegmentRefID>SEG3</PaxSegmentRefID>
                        <PriceClassRefID>PC1</PriceClassRefID>
                    </FareComponent>
                    <FarePriceType>
                        <FarePriceTypeCode>70J</FarePriceTypeCode>
                        <Price>
                            <BaseAmount CurCode="EUR">59.57</BaseAmount>
                            <TaxSummary>
                                <Tax>
                                    <Amount CurCode="EUR">47.29</Amount>
                                    <TaxCode>GENERAL_TAXES_PAX_2</TaxCode>
                                    <TaxName>Taxes - PAX2</TaxName>
                                </Tax>
                                <TotalTaxAmount CurCode="EUR">47.29</TotalTaxAmount>
                            </TaxSummary>
                            <TotalAmount CurCode="EUR">106.86</TotalAmount>
                        </Price>
                    </FarePriceType>
                    <PaxRefID>PAX2</PaxRefID>
                </FareDetail>
                <OrderItemID>773ff970-078e-5efa-9c00-31f92427d5f2</OrderItemID>
                <Price>
                    <BaseAmount CurCode="EUR">59.57</BaseAmount>
                    <TaxSummary>
                        <Tax>
                            <Amount CurCode="EUR">47.29</Amount>
                            <TaxCode>GENERAL_TAXES_PAX_2</TaxCode>
                            <TaxName>Taxes - PAX2</TaxName>
                        </Tax>
                        <TotalTaxAmount CurCode="EUR">47.29</TotalTaxAmount>
                    </TaxSummary>
                    <TotalAmount CurCode="EUR">106.86</TotalAmount>
                </Price>
                <Service>
                    <PaxRefID>PAX2</PaxRefID>
                    <ServiceAssociations>
                        <PaxSegmentRefID>SEG2</PaxSegmentRefID>
                    </ServiceAssociations>
                    <ServiceID>SV4</ServiceID>
                    <StatusCode>T</StatusCode>
                </Service>
                <Service>
                    <PaxRefID>PAX2</PaxRefID>
                    <ServiceAssociations>
                        <PaxSegmentRefID>SEG3</PaxSegmentRefID>
                    </ServiceAssociations>
                    <ServiceID>SV5</ServiceID>
                    <StatusCode>T</StatusCode>
                </Service>
                <Service>
                    <PaxRefID>PAX2</PaxRefID>
                    <ServiceAssociations>
                        <PaxSegmentRefID>SEG1</PaxSegmentRefID>
                    </ServiceAssociations>
                    <ServiceID>SV6</ServiceID>
                    <StatusCode>T</StatusCode>
                </Service>
            </OrderItem>
            <OwnerCode>IB</OwnerCode>
            <StatusCode>OPENED</StatusCode>
            <TotalPrice>
                <BaseAmount CurCode="EUR">145.67</BaseAmount>
                <TaxSummary>
                    <Tax>
                        <Amount CurCode="EUR">47.29</Amount>
                        <TaxCode>GENERAL_TAXES_PAX_1</TaxCode>
                        <TaxName>Taxes - PAX1</TaxName>
                    </Tax>
                    <Tax>
                        <Amount CurCode="EUR">47.29</Amount>
                        <TaxCode>GENERAL_TAXES_PAX_2</TaxCode>
                        <TaxName>Taxes - PAX2</TaxName>
                    </Tax>
                    <TotalTaxAmount CurCode="EUR">94.58</TotalTaxAmount>
                </TaxSummary>
                <TotalAmount CurCode="EUR">240.25</TotalAmount>
            </TotalPrice>
        </Order>
        <TicketDocInfo>
            <BookingRef>
                <BookingEntity>
                    <Carrier>
                        <AirlineDesigCode>IB</AirlineDesigCode>
                    </Carrier>
                </BookingEntity>
                <BookingID>HJWF8</BookingID>
            </BookingRef>
            <PaxRefID>PAX1</PaxRefID>
            <PaymentInfoRefID>PAY1</PaymentInfoRefID>
            <Ticket>
                <Coupon>
                    <CouponNumber>1</CouponNumber>
                    <CouponStatusCode>I</CouponStatusCode>
                </Coupon>
                <ReportingTypeCode>BSP</ReportingTypeCode>
                <TicketDocTypeCode>T</TicketDocTypeCode>
                <TicketNumber>0752111585078</TicketNumber>
            </Ticket>
        </TicketDocInfo>
        <TicketDocInfo>
            <BookingRef>
                <BookingEntity>
                    <Carrier>
                        <AirlineDesigCode>IB</AirlineDesigCode>
                    </Carrier>
                </BookingEntity>
                <BookingID>HJWF8</BookingID>
            </BookingRef>
            <PaxRefID>PAX2</PaxRefID>
            <PaymentInfoRefID>PAY1</PaymentInfoRefID>
            <Ticket>
                <Coupon>
                    <CouponNumber>1</CouponNumber>
                    <CouponStatusCode>I</CouponStatusCode>
                </Coupon>
                <ReportingTypeCode>BSP</ReportingTypeCode>
                <TicketDocTypeCode>T</TicketDocTypeCode>
                <TicketNumber>0752111585079</TicketNumber>
            </Ticket>
        </TicketDocInfo>
        <Warning>
            <Code>RESIDENCY_VERIFICATION_STATUS</Code>
            <DescText>STEFAN GARCIA - NOT VERIFIED</DescText>
        </Warning>
    </Response>
    <PayloadAttributes>
        <CorrelationID>3b84928e-d1a6-3192-ae3c-67851ad4392a</CorrelationID>
        <Timestamp>2025-10-30T14:51:30.445+01:00</Timestamp>
        <VersionNumber>19.2</VersionNumber>
    </PayloadAttributes>
    <PaymentFunctions>
        <PaymentProcessingSummary>
            <Amount CurCode="EUR">240.25</Amount>
            <PaymentID>PAY1</PaymentID>
            <PaymentMethod>
                <Cash/>
            </PaymentMethod>
            <TypeCode>Cash</TypeCode>
        </PaymentProcessingSummary>
    </PaymentFunctions>
</IATA_OrderViewRS>