Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Excerpt
nameGetFare

NAME

DESCRIPTION

FORMAT

ALLOWED/POSSIBLE VALUES

<Query> Only for Get Fare

Offer

Info

Attribute

OfferID

Info

Attribute

Owner

Info

Attribute

ResponseID

Used to reference the following:

  • The ID of an Offer returned in the previous AirShoppingRS

  • Together with the Owner of said Offer. Today this is always “IB”

  • Together with the ResponseID from the previous AirShoppingRS

Alphanumeric

As per description.

OfferItem

Info

Attribute

OfferItemID

The ID of the OfferItem returned in the previous AirShoppingRS for which you want the details.

Alphanumeric

As per description.

Offer / OfferItem / PassengerRefs

The references of the passengers for whom the previous AirShoppingwas done and the same as those included in the DataLists/PassengerList

Alphanumeric

The same as those returned in the AirShoppingRS

...

Expand
titleExample Get Direct Fare
Code Block
languagexml
<JourneyData>
	<Flight>
		<OriginDestinationKey>IDA<<OriginDestinationKey>ORIGIN</OriginDestinationKey>
		<Flight>
			<Departure>
				<AirportCode>MAD</AirportCode>
				<Date>2023-05-24</Date>
			</Departure>
			<Arrival>
				<AirportCode>PMI</AirportCode>
			</Arrival>
			<MarketingCarrier>
				<AirlineID>IB</AirlineID>
				<FlightNumber>3916</FlightNumber>
			</MarketingCarrier>
		</Flight>
	</Flight>
	<Flight>
		<OriginDestinationKey>VUELTA<<OriginDestinationKey>DESTINATION</OriginDestinationKey>
		<Flight>
			<Departure>
				<AirportCode>PMI</AirportCode>
				<Date>2023-05-31</Date>
			</Departure>
			<Arrival>
				<AirportCode>MAD</AirportCode>
			</Arrival>
			<MarketingCarrier>
				<AirlineID>IB</AirlineID>
				<FlightNumber>3919</FlightNumber>
			</MarketingCarrier>
		</Flight>
	</Flight>
</JourneyData>

...