...
Table of Contents |
---|
...
Presently, the purchase of this product is available in instant purchase scenarios and On-Hold flows.
The inclusion of any of the Sport baggages shown in the table below (only applicable to this specific Private Fare type) can be carried out:
...
As shown in the following example, the ADULT_01
is requesting to carry Fishing equipment (BAGGAGE/SP/0D6
) and Surfing equipment(BAGGAGE/SP/0D8
). This is due to the fact that this passenger is also associated to an Infant passenger type, in which case it is allowed to carry two Sports equipments within the permitted baggage allowance of the Sport product.
Note: It is not possible to include Sports equipment for the Infant passenger type. You will find an example of the Warning returned inScenario 5 of our Warning & Error Messages page.
...
Query
element, where we reference theOrderID
for which we are adding new baggages. Please note that thePassengerServicing
, where the Passenger’s reference for whom the Sport baggages is assigned must be included, is compulsory and failing to include it will return an Error, as shown in Scenario 8of our Warning and Error Messages page.The
InstructionsList
, following the same process as in the OrderCreate. Below, we illusrtrate how it is included.
Note: In an Order where all Sport equipments fail to be added, an error will be returned. In cases where one ore more are correctly included, the correct one is returned along with a Warning indicating which ones are incorrect.
...
Code Block | ||
---|---|---|
| ||
<DataLists> <PassengerList> <Passenger PassengerID="ADULT_01"> <...> </...> </Passenger> <Passenger PassengerID="ADULT_02"> <...> </...> </Passenger> </PassengerList> <ContactList> <...> </...> </ContactList> <FlightSegmentList> <FlightSegment SegmentKey="IB043820231229"> <...> </...> </FlightSegment> <FlightSegment SegmentKey="IB044720240106"> <...> </...> </FlightSegment> <FlightSegment SegmentKey="IB394820240121"> <...> </...> </FlightSegment> </FlightSegmentList> <InstructionsList> <Instruction ListKey="Instruction_1"> <FreeFormTextInstruction refs="ADULT_01 IB043820231229 IB044720240106 IB394820240121"> <Remark>BAGGAGE/SP/0EC</Remark> </FreeFormTextInstruction> </Instruction> </InstructionsList> </DataLists> |
Note1: if any Sport baggage is included in the InstructionsList
of the OrderCreateRQ and also added in the InstructionsList of the OrderChange, an error will be returned as shown in the first example of Scenario 6 in our Warning & Error Messages page.
...