Versions Compared

Key

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

Image Modified

Table of Contents

Bags

Through NDC, you can purchase additional bags of 15kg, 23kg, and 32kg.

...

To purchase bags of 15kg, 23kg or 32kg, the ServiceFilter/GroupCode needs to be sent in the ServiceListRQ message as per the following example (please, refer to the SubGroup and Group codes displayed in this table):

Code Block
<Parameters>
  <ServiceFilters>
    <ServiceFilter>
      <GroupCode>BG</GroupCode>
    </ServiceFilter>
  </ServiceFilters>
</Parameters>

The information regarding the price and details is included in the message response, later displayed in these examples.

ServiceListRQ Message

When new services are released, we will publish the new applicable ServiceFilters, and you can include them as and when required, as per the following examples:

...

Please, note that both GroupCode and SubGroupCode information are being taken from this table, and that the above-mentioned example combines two ancillaries (Bags together with Priority Boarding).

...

Code Block
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
	<soapenv:Header/>
	<soapenv:Body>
		<ServiceListRQ Version="5.000" PrimaryLangID="es" xmlns="http://www.iata.org/IATA/EDIST/2017.2">
			<PointOfSale>
				<Location>
					<CountryCode>ES</CountryCode>
				</Location>
			</PointOfSale>
			<Document>
				<ReferenceVersion>1.0</ReferenceVersion>
			</Document>
			<Party>
				<Sender>
					<TravelAgencySender>
						<IATA_Number>11112220</IATA_Number>
						<AgencyID>firstAgency</AgencyID>
					</TravelAgencySender>
				</Sender>
				<Participants>
					<Participant>
						<AggregatorParticipant SequenceNumber="1">
							<AggregatorID>00000022</AggregatorID>
						</AggregatorParticipant>
					</Participant>
				</Participants>
			</Party>
			<Parameters>
				<ServiceFilters>
					<ServiceFilter>
						<GroupCode>BG</GroupCode>
					</ServiceFilter>
				</ServiceFilters>
			</Parameters>
			<ShoppingResponseID>
				<ResponseID>Qm9va2luZ0BHVy0xNjgxNzI2NzkwMDI5LUU4TXVo</ResponseID>
			</ShoppingResponseID>
			<Query>
				<Offers>
					<Offer>
						<OfferID Owner="IB">IB1f565db470e14d5ebb4038fa101152c0OC</OfferID>
						<OfferItemIDs>
							<OfferItemID Owner="IB">IB1f565db470e14d5ebb4038fa101152c0OC_01  </OfferItemID>
						</OfferItemIDs>
					</Offer>
				</Offers>
			</Query>
		</ServiceListRQ>
	</soapenv:Body>
</soapenv:Envelope>

ServiceListRS Message

All services offered are included within the ServiceList message response. This will evolve as more services are offered through the NDC channel.

...

As the purchase of multiple bags is solved here using the ServiceBundle, made up of various individual bag services, the NotPermitted combinations are shown to prevent the purchase of a number of bags that would exceed the maximum quantity allowed.

OrderCreateRQ Message

Service Bundle

From the OrderCreate Request (and as an example of the various combinations) the following code shows that bags with different weights are being assigned to different passengers.

...

Code Block
<Query>
	<Order>
		<Offer OfferID="IB1f565db470e14d5ebb4038fa101152c0OC" Owner="IB" ResponseID="Qm9va2luZ0BHVy0xNjgxNzI2NzkwMDI5LUU4TXVo">
			<OfferItem OfferItemID="IB1f565db470e14d5ebb4038fa101152c0OC_01">
				<PassengerRefs>ADULT_01 ADULT_02 ADULT_03 ADULT_04</PassengerRefs>
			</OfferItem>
		</Offer>
		<Offer OfferID="ALACARTE_IB81c6d3ee302c470fa571d241500a9256" Owner="IB" ResponseID="Qm9va2luZ0BHVy0xNjgxNzI2NzkwMDI5LUU4TXVo">
			<OfferItem OfferItemID="ALACARTE_BAGGAGE_IB81c6d3ee302c470fa571d241500a9256_01">
				<PassengerRefs>ADULT_01 ADULT_02 ADULT_03</PassengerRefs>
			</OfferItem>
			<OfferItem OfferItemID="ALACARTE_BAGGAGE_IB81c6d3ee302c470fa571d241500a9256_08">
				<PassengerRefs>ADULT_01 ADULT_02</PassengerRefs>
			</OfferItem>
			<OfferItem OfferItemID="ALACARTE_BAGGAGE_IB81c6d3ee302c470fa571d241500a9256_15">
				<PassengerRefs>ADULT_01</PassengerRefs>
			</OfferItem>
		</Offer>

OrderViewRS Message

In the OrderViewRS the Bag Ancillary is shown in the following way.

...

Code Block
<DataLists>
	<...>
	<ServiceDefinitionList>
		<ServiceDefinition ServiceDefinitionID="BAGSERVICE-15-1">
			<Name>1 EXTRA BAG 15</Name>
			<Encoding>
				<RFIC>C</RFIC>
				<SubCode>0LM</SubCode>
			</Encoding>
			<Descriptions>
				<Description>
					<Text>1 Additional Bag up to 15 KG each</Text>
				</Description>
			</Descriptions>
			<BookingInstructions>
				<SSRCode>XBAG</SSRCode>
				<Method>SSR</Method>
			</BookingInstructions>
		</ServiceDefinition>
		<ServiceDefinition ServiceDefinitionID="BAGSERVICE-23-1">
			<Name>1 EXTRA BAG 23</Name>
			<Encoding>
				<RFIC>C</RFIC>
				<SubCode>0GO</SubCode>
			</Encoding>
			<Descriptions>
				<Description>
					<Text>1 Additional Bag up to 23 KG each</Text>
				</Description>
			</Descriptions>
			<BookingInstructions>
				<SSRCode>XBAG</SSRCode>
				<Method>SSR</Method>
			</BookingInstructions>
		</ServiceDefinition>
		<ServiceDefinition ServiceDefinitionID="BAGSERVICE-32-1">
			<Name>1 EXTRA BAG 32</Name>
			<Encoding>
				<RFIC>C</RFIC>
				<SubCode>0FM</SubCode>
			</Encoding>
			<Descriptions>
				<Description>
					<Text>1 Additional Bag up to 32 KG each</Text>
				</Description>
			</Descriptions>
			<BookingInstructions>
				<SSRCode>XBAG</SSRCode>
				<Method>SSR</Method>
			</BookingInstructions>
		</ServiceDefinition>
		<ServiceDefinition ServiceDefinitionID="SPECIAL_NEED-BLND">
			<Name>Blind Passenger</Name>
			<Descriptions>
				<Description>
					<Text>Request Service Animal if travelling with one</Text>
				</Description>
				<Description refs="ADULT_04">
					<Text>Solicite servicio de animales si viaja con uno</Text>
				</Description>
			</Descriptions>
			<BookingInstructions>
				<SSRCode>BLND</SSRCode>
			</BookingInstructions>
		</ServiceDefinition>
	</ServiceDefinitionList>
</DataLists>

MediaList

Here is where we put URLs that can be used to link to additional information such as rich media and other useful information for the customer.

...