IATA_AirlineProfileRQ/RS

Introduction

The IATA_AirlineProfileRQ/RS message pair can be used to get additional information about an airline.

This includes some general information as well as a list of routes, that the airline reservation system supports.

General Usage

The most important feature of the IATA_AirlineProfile is to minimize error rates in flight availabilities. If the client knows, which routes are supported by the airline, he can reduce the rate of failure by eliminating all requests for unsupported routes. This improves performance and reduces unnecessary traffic.

The request is based on the airine’s carrier code.

Sample

IATA_AirlineProfileRQ

Show/Hide Request

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<IATA_AirlineProfileRQ xmlns="http://www.iata.org/IATA/2015/00/2019.2/IATA_AirlineProfileRQ">
    <Party>
        <Sender>
            <EnabledSystem>
                <SystemID>94021</SystemID>
            </EnabledSystem>
        </Sender>
    </Party>
    <Request>
        <AirlineProfileFilterCriteria>
            <AirlineProfile>
                <OwnerCode>ZZ</OwnerCode>
            </AirlineProfile>
        </AirlineProfileFilterCriteria>
    </Request>
</IATA_AirlineProfileRQ>

IATA_AirlineProfileRS

This sample has been shortened, because the complete IATA_AirlineProfileRS is huge.

Show/Hide Response

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<IATA_AirlineProfileRS xmlns="http://www.iata.org/IATA/2015/00/2019.2/IATA_AirlineProfileRS">
    <Response>
        <AirlineProfile>
            <AirlineProfileDataItem>
                <ActionTypeCode>Availability</ActionTypeCode>
                <OfferFilterCriteria>
                    <OfferDestPoint>
                        <IATA_LocationCode>REC</IATA_LocationCode>
                    </OfferDestPoint>
                    <OfferOriginPoint>
                        <IATA_LocationCode>SOF</IATA_LocationCode>
                    </OfferOriginPoint>
                </OfferFilterCriteria>
                <OfferFilterCriteria>
                    <OfferDestPoint>
                        <IATA_LocationCode>WDH</IATA_LocationCode>
                    </OfferDestPoint>
                    <OfferOriginPoint>
                        <IATA_LocationCode>MLA</IATA_LocationCode>
                    </OfferOriginPoint>
                </OfferFilterCriteria>
            </AirlineProfileDataItem>
            <ProfileOwner>
                <AirlineDesigCode>ZZ</AirlineDesigCode>
            </ProfileOwner>
        </AirlineProfile>
    </Response>
    <PayloadAttributes>
        <Timestamp TimeZoneCode="UTC">2020-05-04T08:18:08.233</Timestamp>
        <VersionNumber>19.2</VersionNumber>
    </PayloadAttributes>
</IATA_AirlineProfileRS>