- Created by Yulia Komarova, last modified by n.v.sokolova on 23.01.2025
You are viewing an old version of this page. View the current version.
Compare with Current View Page History
« Previous Version 22 Next »
Overview
An example of end-to-end scenario based on operation flow and user story searchFlightsJorney → book (Flight) → reprice without PNR → reprice with PNR → demandTickets (ETK) S7 Agent wants to buy round-trip flight from Novosibirsk (OVB) to Krasnoyarsk (KJA) for one adult traveler of their corporate client. He chooses S7 direct flight. Agent is already a member of the Corporate Program S7 with discount.Operation flow
User story
Scenario
The general process for buying a trip such as this is:
Initial search for flight solutions: S7 Agent executes a searchFlightsJorney operation with itinerary criteria, passenger count and Agent/Corporate client codes
Book a reservation: S7 Agent executes a book operation with corporate client/agent details and itinerary info of chosen solution from search result
Request for informative reservation pricing: S7 Agent executes a reprice operation with itinerary info and Agent/Corporate client codes of chosen solution
Request for reservation pricing: S7 Agent executes a reprice operation with itinerary info and Agent/Corporate client codes of chosen solution
Issue tickets for all passenger: S7 Agent executes a demandTickets operation with reservation reference, pricing details and Agent/Corporate client codes
The value of the "Agent" parameter can be of the following types: QUW*** and QY*** depending on the terms of the agreement.
Table of contents:
Agreement on participation in the Corporate Program — is a special type of agency agreement between parties:
airline (S7);
travel agency;
corporate client — the third legal entity, which is a consumer of the airline's services through agency.
How it looks like in real life: A large travel agency (e.g. Aeroclub) carries out agency support for Coca-Cola employees regularly flying on business trips. The current agreement between S7 and Aeroclub allows Aeroclub to sell S7 flights to Coca-Cola employees with a discount or cashback provided by this agreement. However, the Coca-Cola Company does not need to have a separate agreement with C7.
This functionality is for adult passengers only
You can use only one cabin type (Economy or Business) on the whole itinerary (both slices)
You can't combine different discounts in one itinerary
Discounts are available only for S7 flights only
Other scenarios are not differ from standard (OW example, group of ADT example)
Step 1: Initial search for flight solutions
S7 Agent executes a searchFlightsJorney operation with itinerary criteria, passenger count and Agent/Corporate client codes to receive solution for trip
itinerary criteria - round-trip flight from Novosibirsk (OVB) to Krasnoyarsk (KJA)
passenger types count - 1ADT
Agent/Corporate client codes - QY124656/12251
<Envelope xmlns="http://schemas.xmlsoap.org/soap/envelope/"> <Header /> <Body> <AirShoppingRQ xmlns="http://www.iata.org/IATA/EDIST" Version="1.0"> <Document /> <Party> <Sender> <AgentUserSender> <PseudoCity>S7AGN8224</PseudoCity> <AgentUserID>ID</AgentUserID> </AgentUserSender> </Sender> </Party> <Parameters> <CurrCodes> <CurrCode>RUB</CurrCode> </CurrCodes> </Parameters> <Travelers> <Traveler> <AnonymousTraveler> <PTC Quantity="1">ADT</PTC> </AnonymousTraveler> </Traveler> </Travelers> <CoreQuery> <OriginDestinations> <OriginDestination> <Departure> <AirportCode>OVB</AirportCode> <Date>2025-02-13</Date> </Departure> <Arrival> <AirportCode>KJA</AirportCode> </Arrival> </OriginDestination> <OriginDestination> <Departure> <AirportCode>KJA</AirportCode> <Date>2025-02-19</Date> </Departure> <Arrival> <AirportCode>OVB</AirportCode> </Arrival> </OriginDestination> </OriginDestinations> </CoreQuery> <Qualifiers> <Qualifier> <SpecialFareQualifiers> <AirlineID>S7</AirlineID> <CompanyIndex>QY124656</CompanyIndex> <Account>669</Account> </SpecialFareQualifiers> </Qualifier> </Qualifiers> </AirShoppingRQ> </Body> </Envelope>
Received solutions include information for whole itinerary. Pricing also divided by fare family and includes up to 6 Fare Families (Basic Economy, Standard Economy, Plus Economy, Basic Business, Standard Business, Plus Business) for each itinerary solution. Prices include discounts. The discount amount and the discount percentage are also indicated.
Step 2: Book a reservation
S7 Agent executes a book operation with corporate client/agent details and itinerary info of chosen solution from search results:
<DetailedFlightItem> block consists of journey information, where each slice is described by the <OriginDestination> element, and each segment in slice by the <Flight> element.
Each <OriginDestination> takes from appropriate AirShoppingRS
Segments (Flight) must be devided into slices (OriginDestination):
one OriginDestination for One Way trip;
two for Round Trip and more for MultiCity;
for Transfer Trip all segments included in one slice have to be pass in one OriginDestination;
for Transfer Trip segments with stopover between have to be divided into two OriginDestination.
OriginDestination information in AirShoppingRS
/Envelope /Body /AirShoppingRS /DataLists /FlightSegmentList
and <ClassOfService> (RBD) from
RBD information in AirShoppingRS
/Envelope /Body /AirShoppingRS /OffersGroup /AirlineOffers /AirlineOffer /PricedOffer /OfferPrice /RequestedDate /Associations /ApplicableFlight /FlightSegmentReference /ClassOfService/Code
Agent/Corporate client codes are the same.
<?xml version="1.0" encoding="UTF-8"?> <Envelope xmlns="http://schemas.xmlsoap.org/soap/envelope/"> <Header /> <Body> <OrderCreateRQ xmlns="http://www.iata.org/IATA/EDIST" Version="1.0"> <Document /> <Party> <Sender> <AgentUserSender> <Name>S7-AIDL</Name> <OtherIDs> <OtherID Description="POS_Type">1</OtherID> <OtherID Description="requestorType">U</OtherID> </OtherIDs> <PseudoCity>OVBS728AB</PseudoCity> <AgentUserID>S7AgentAPI</AgentUserID> <UserRole>AS</UserRole> </AgentUserSender> </Sender> </Party> <Query> <Passengers> <Passenger ObjectKey="SH1"> <PTC>ADT</PTC> <Age> <BirthDate>1992-02-27</BirthDate> </Age> <Name> <Surname>Pilatus</Surname> <Given>Pontius</Given> <Title>MR</Title> </Name> <Contacts> <Contact> <EmailContact> <Address>r.tkachuk@s7.ru</Address> </EmailContact> <PhoneContact> <Number CountryCode="7" AreaCode="999">9999999</Number> </PhoneContact> </Contact> </Contacts> <Gender>Male</Gender> <PassengerIDInfo> <PassengerDocument> <Type>PP</Type> <ID>111111111</ID> <BirthCountry>RU</BirthCountry> <DateOfIssue>2012-02-27</DateOfIssue> <DateOfExpiration>2030-02-27</DateOfExpiration> <CountryOfResidence>RU</CountryOfResidence> </PassengerDocument> </PassengerIDInfo> </Passenger> </Passengers> <OrderItems> <ShoppingResponse> <Owner>S7</Owner> <ResponseID>UNKNOWN</ResponseID> <Offers> <Offer> <OfferID Owner="S7">UNKNOWN</OfferID> <OfferItems> <OfferItem> <OfferItemID Owner="S7">UNKNOWN</OfferItemID> <Passengers> <PassengerReference>SH1</PassengerReference> </Passengers> <ApplicableFlight> <FlightReferences>FL1 FL2</FlightReferences> </ApplicableFlight> </OfferItem> </OfferItems> </Offer> </Offers> </ShoppingResponse> <OfferItem> <OfferItemID Owner="S7">UNKNOWN</OfferItemID> <OfferItemType> <DetailedFlightItem> <OriginDestination> <Flight> <SegmentKey>FL1</SegmentKey> <Departure> <AirportCode>MUC</AirportCode> <Date>2019-11-19</Date> <Time>13:45</Time> </Departure> <Arrival> <AirportCode>DME</AirportCode> <Date>2019-11-19</Date> <Time>19:00</Time> </Arrival> <MarketingCarrier> <AirlineID>S7</AirlineID> <FlightNumber>3556</FlightNumber> </MarketingCarrier> <OperatingCarrier> <AirlineID>S7</AirlineID> <FlightNumber>3556</FlightNumber> </OperatingCarrier> <ClassOfService> <Code>W</Code> </ClassOfService> </Flight> </OriginDestination> <OriginDestination> <Flight> <SegmentKey>FL2</SegmentKey> <Departure> <AirportCode>DME</AirportCode> <Date>2019-12-30</Date> <Time>05:00</Time> </Departure> <Arrival> <AirportCode>MUC</AirportCode> <Date>2019-12-30</Date> <Time>06:15</Time> </Arrival> <MarketingCarrier> <AirlineID>S7</AirlineID> <FlightNumber>3551</FlightNumber> </MarketingCarrier> <OperatingCarrier> <AirlineID>S7</AirlineID> <FlightNumber>3551</FlightNumber> </OperatingCarrier> <ClassOfService> <Code>S</Code> </ClassOfService> </Flight> </OriginDestination> </DetailedFlightItem> </OfferItemType> </OfferItem> </OrderItems> <DataLists> <InstructionsList> <Instruction ListKey="CC"> <SpecialBookingInstruction> <Code>QUW2145</Code> <Definition>1032</Definition> </SpecialBookingInstruction> </Instruction> </InstructionsList> </DataLists> </Query> </OrderCreateRQ> </Body> </Envelope>
<?xml version="1.0" encoding="UTF-8" standalone="yes"?> <ns2:Envelope xmlns:ns2="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns3="http://www.iata.org/IATA/EDIST"> <ns2:Body> <ns3:OrderViewRS Version=""> <ns3:Document> <ns3:Name>1.0</ns3:Name> </ns3:Document> <ns3:Success /> <ns3:Response> <ns3:OrderViewProcessing /> <ns3:Passengers> <ns3:Passenger ObjectKey="SH2"> <ns3:PTC Quantity="1">ADT</ns3:PTC> <ns3:Age> <ns3:BirthDate>1992-02-27</ns3:BirthDate> </ns3:Age> <ns3:Name> <ns3:Surname>PILATUS</ns3:Surname> <ns3:Given>PONTIUS</ns3:Given> <ns3:Title>MR</ns3:Title> <ns3:Middle /> </ns3:Name> <ns3:Contacts> <ns3:Contact> <ns3:EmailContact> <ns3:Address>r.tkachuk@s7.ru</ns3:Address> </ns3:EmailContact> <ns3:PhoneContact> <ns3:Number CountryCode="7">9999999999</ns3:Number> </ns3:PhoneContact> </ns3:Contact> </ns3:Contacts> <ns3:Gender>Male</ns3:Gender> <ns3:PassengerIDInfo> <ns3:PassengerDocument> <ns3:Type>PP</ns3:Type> <ns3:ID>111111111</ns3:ID> <ns3:BirthCountry>RU</ns3:BirthCountry> <ns3:DateOfExpiration>2030-02-27</ns3:DateOfExpiration> <ns3:CountryOfResidence>RU</ns3:CountryOfResidence> </ns3:PassengerDocument> </ns3:PassengerIDInfo> </ns3:Passenger> </ns3:Passengers> <ns3:Order> <ns3:OrderID Owner="S7">1</ns3:OrderID> <ns3:BookingReferences> <ns3:BookingReference> <ns3:ID>N39VQH</ns3:ID> <ns3:AirlineID>S7</ns3:AirlineID> </ns3:BookingReference> </ns3:BookingReferences> <ns3:TimeLimits> <ns3:PaymentTimeLimit DateTime="2019-06-07T19:15:26" /> </ns3:TimeLimits> <ns3:OrderItems> <ns3:OrderItem> <ns3:FlightItem> <ns3:OriginDestination> <ns3:Flight> <ns3:SegmentKey>FL1</ns3:SegmentKey> <ns3:Status> <ns3:StatusCode> <ns3:Code>HK</ns3:Code> </ns3:StatusCode> </ns3:Status> <ns3:Departure> <ns3:AirportCode>MUC</ns3:AirportCode> <ns3:Date>2019-11-19</ns3:Date> <ns3:Time>13:45</ns3:Time> </ns3:Departure> <ns3:Arrival> <ns3:AirportCode>DME</ns3:AirportCode> <ns3:Date>2019-11-19</ns3:Date> <ns3:Time>19:00</ns3:Time> </ns3:Arrival> <ns3:MarketingCarrier> <ns3:AirlineID>S7</ns3:AirlineID> <ns3:FlightNumber>3556</ns3:FlightNumber> </ns3:MarketingCarrier> <ns3:OperatingCarrier> <ns3:AirlineID>S7</ns3:AirlineID> <ns3:FlightNumber>3556</ns3:FlightNumber> </ns3:OperatingCarrier> <ns3:CabinType> <ns3:Code>Y</ns3:Code> </ns3:CabinType> <ns3:ClassOfService> <ns3:Code>W</ns3:Code> </ns3:ClassOfService> </ns3:Flight> </ns3:OriginDestination> <ns3:OriginDestination> <ns3:Flight> <ns3:SegmentKey>FL2</ns3:SegmentKey> <ns3:Status> <ns3:StatusCode> <ns3:Code>HK</ns3:Code> </ns3:StatusCode> </ns3:Status> <ns3:Departure> <ns3:AirportCode>DME</ns3:AirportCode> <ns3:Date>2019-12-30</ns3:Date> <ns3:Time>05:00</ns3:Time> </ns3:Departure> <ns3:Arrival> <ns3:AirportCode>MUC</ns3:AirportCode> <ns3:Date>2019-12-30</ns3:Date> <ns3:Time>06:15</ns3:Time> </ns3:Arrival> <ns3:MarketingCarrier> <ns3:AirlineID>S7</ns3:AirlineID> <ns3:FlightNumber>3551</ns3:FlightNumber> </ns3:MarketingCarrier> <ns3:OperatingCarrier> <ns3:AirlineID>S7</ns3:AirlineID> <ns3:FlightNumber>3551</ns3:FlightNumber> </ns3:OperatingCarrier> <ns3:CabinType> <ns3:Code>Y</ns3:Code> </ns3:CabinType> <ns3:ClassOfService> <ns3:Code>S</ns3:Code> </ns3:ClassOfService> </ns3:Flight> </ns3:OriginDestination> </ns3:FlightItem> <ns3:Associations> <ns3:Passengers> <ns3:PassengerReferences>SH2</ns3:PassengerReferences> </ns3:Passengers> </ns3:Associations> </ns3:OrderItem> </ns3:OrderItems> </ns3:Order> </ns3:Response> </ns3:OrderViewRS> </ns2:Body> </ns2:Envelope>
Step 3: Request for informative pricing
S7 Agent executes a informative reprice operation with itinerary info and Agent/Corporate client codes of chosen solution.
All information must be taken from AirShoppingRS:
itinerary details (airport codes and dates for origin and departure, airline code and flight number);
<FlightItem> block must fill in like in OrderCreateRQ
passenger types (PTC);
fare details (RBD and fare code);
Agent/Corporate client codes are the same.
<Envelope xmlns="http://schemas.xmlsoap.org/soap/envelope/"> <Header /> <Body> <ItinReshopRQ Version="" xmlns="http://www.iata.org/IATA/EDIST"> <Document /> <Party> <Sender> <AgentUserSender> <Name>S7-AIDL</Name> <OtherIDs> <OtherID Description="POS_Type">1</OtherID> <OtherID Description="requestorType">U</OtherID> </OtherIDs> <PseudoCity>OVBS728AB</PseudoCity> <AgentUserID>S7AgentAPI</AgentUserID> <UserRole>AS</UserRole> </AgentUserSender> </Sender> </Party> <Query> <Reshop> <Actions> <ActionType /> <OrderItems> <OrderItem> <FlightItem> <OriginDestination> <Flight> <SegmentKey>FL1</SegmentKey> <Departure> <AirportCode>MUC</AirportCode> <Date>2019-11-19</Date> <Time>13:45</Time> </Departure> <Arrival> <AirportCode>DME</AirportCode> <Date>2019-11-19</Date> <Time>19:00</Time> </Arrival> <MarketingCarrier> <AirlineID>S7</AirlineID> <FlightNumber>3556</FlightNumber> </MarketingCarrier> <OperatingCarrier> <AirlineID>S7</AirlineID> <FlightNumber>3556</FlightNumber> </OperatingCarrier> </Flight> </OriginDestination> <OriginDestination> <Flight> <SegmentKey>FL2</SegmentKey> <Departure> <AirportCode>DME</AirportCode> <Date>2019-12-30</Date> <Time>05:00</Time> </Departure> <Arrival> <AirportCode>MUC</AirportCode> <Date>2019-12-30</Date> <Time>06:15</Time> </Arrival> <MarketingCarrier> <AirlineID>S7</AirlineID> <FlightNumber>3551</FlightNumber> </MarketingCarrier> <OperatingCarrier> <AirlineID>S7</AirlineID> <FlightNumber>3551</FlightNumber> </OperatingCarrier> </Flight> </OriginDestination> <FareDetail> <FareComponent refs="FL1"> <FareBasis> <FareBasisCode> <Code>WFLRT</Code> </FareBasisCode> <RBD>W</RBD> </FareBasis> </FareComponent> <FareComponent refs="FL2"> <FareBasis> <FareBasisCode> <Code>SFLRT</Code> </FareBasisCode> <RBD>S</RBD> </FareBasis> </FareComponent> </FareDetail> </FlightItem> <Associations> <Passengers> <PassengerReferences>SH1</PassengerReferences> </Passengers> </Associations> </OrderItem> </OrderItems> <Passengers> <Passenger ObjectKey="SH1"> <PTC Quantity="1">ADT</PTC> <Name> <Surname /> </Name> </Passenger> </Passengers> <Qualifiers> <Qualifier> <SpecialFareQualifiers> <AirlineID>S7</AirlineID> <CompanyIndex>QUW2145</CompanyIndex> <Account>1032</Account> </SpecialFareQualifiers> </Qualifier> </Qualifiers> </Actions> </Reshop> </Query> </ItinReshopRQ> </Body> </Envelope>
<?xml version="1.0" encoding="UTF-8" standalone="yes"?> <ns2:Envelope xmlns:ns2="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns3="http://www.iata.org/IATA/EDIST"> <ns2:Body> <ns3:ItinReshopRS Version=""> <ns3:Document> <ns3:Name>1.0</ns3:Name> </ns3:Document> <ns3:Success /> <ns3:Response> <ns3:ItinReshopProcessing /> <ns3:Passengers> <ns3:Passenger ObjectKey="SH1"> <ns3:PTC Quantity="1">ADT</ns3:PTC> <ns3:Name> <ns3:Surname>Anonymous</ns3:Surname> </ns3:Name> </ns3:Passenger> </ns3:Passengers> <ns3:ReShopOffers> <ns3:ReShopOffer ObjectKey="RO1"> <ns3:OfferID Owner="S7">Offer</ns3:OfferID> <ns3:TotalPrice> <ns3:DetailCurrencyPrice> <ns3:Total Code="RUB">17288</ns3:Total> <ns3:Details> <ns3:Detail> <ns3:SubTotal Code="RUB">10660</ns3:SubTotal> <ns3:Application>fare</ns3:Application> </ns3:Detail> <ns3:Detail> <ns3:SubTotal Code="RUB">1725</ns3:SubTotal> <ns3:Application>discount</ns3:Application> </ns3:Detail> </ns3:Details> <ns3:Taxes> <ns3:Total Code="RUB">6628</ns3:Total> </ns3:Taxes> <ns3:Fees> <ns3:Total Code="RUB">0</ns3:Total> </ns3:Fees> </ns3:DetailCurrencyPrice> </ns3:TotalPrice> <ns3:ReShopPricedOffer> <ns3:OfferPrice> <ns3:RequestedDate> <ns3:PriceDetail> <ns3:TotalAmount> <ns3:DetailCurrencyPrice> <ns3:Total Code="RUB">17288</ns3:Total> <ns3:Details> <ns3:Detail> <ns3:SubTotal Code="RUB">10660</ns3:SubTotal> <ns3:Application>fare</ns3:Application> </ns3:Detail> <ns3:Detail> <ns3:SubTotal Code="RUB">1725</ns3:SubTotal> <ns3:Application>discount</ns3:Application> </ns3:Detail> </ns3:Details> <ns3:Taxes> <ns3:Total Code="RUB">6628</ns3:Total> </ns3:Taxes> <ns3:Fees> <ns3:Total Code="RUB">0</ns3:Total> </ns3:Fees> </ns3:DetailCurrencyPrice> </ns3:TotalAmount> <ns3:BaseAmount Code="RUB">10660</ns3:BaseAmount> <ns3:FareFiledIn> <ns3:BaseAmount Code="EUR">172.00</ns3:BaseAmount> <ns3:ExchangeRate>72.0</ns3:ExchangeRate> </ns3:FareFiledIn> <ns3:Discount> <ns3:DiscountAmount Code="RUB">1725</ns3:DiscountAmount> <ns3:DiscountPercent>14</ns3:DiscountPercent> </ns3:Discount> <ns3:Surcharges> <ns3:Surcharge> <ns3:Total Code="RUB">0</ns3:Total> </ns3:Surcharge> </ns3:Surcharges> <ns3:Taxes> <ns3:Total Code="RUB">6628</ns3:Total> <ns3:Breakdown> <ns3:Tax> <ns3:Amount Code="RUB">3600</ns3:Amount> <ns3:TaxCode>YR</ns3:TaxCode> </ns3:Tax> <ns3:Tax> <ns3:Amount Code="RUB">532</ns3:Amount> <ns3:TaxCode>OY</ns3:TaxCode> </ns3:Tax> <ns3:Tax> <ns3:Amount Code="RUB">541</ns3:Amount> <ns3:TaxCode>DE</ns3:TaxCode> </ns3:Tax> <ns3:Tax> <ns3:Amount Code="RUB">1675</ns3:Amount> <ns3:TaxCode>RA</ns3:TaxCode> </ns3:Tax> <ns3:Tax> <ns3:Amount Code="RUB">140</ns3:Amount> <ns3:TaxCode>RI</ns3:TaxCode> </ns3:Tax> <ns3:Tax> <ns3:Amount Code="RUB">140</ns3:Amount> <ns3:TaxCode>RI</ns3:TaxCode> </ns3:Tax> </ns3:Breakdown> </ns3:Taxes> </ns3:PriceDetail> <ns3:Associations> <ns3:AssociatedTraveler> <ns3:TravelerReferences>SH1</ns3:TravelerReferences> </ns3:AssociatedTraveler> <ns3:OfferDetailAssociation> <ns3:OfferTermReferences>T1 T2</ns3:OfferTermReferences> </ns3:OfferDetailAssociation> </ns3:Associations> </ns3:RequestedDate> <ns3:FareDetail> <ns3:FareComponent> <ns3:SegmentReference>SEG1</ns3:SegmentReference> <ns3:FareBasis> <ns3:FareBasisCode> <ns3:Code>WFLRT</ns3:Code> </ns3:FareBasisCode> <ns3:RBD>W</ns3:RBD> </ns3:FareBasis> <ns3:FareRules> <ns3:Ticketing> <ns3:Endorsements> <ns3:Endorsement>ENDO</ns3:Endorsement> </ns3:Endorsements> </ns3:Ticketing> <ns3:Remarks> <ns3:Remark>UnstructuredFareCalc</ns3:Remark> </ns3:Remarks> </ns3:FareRules> </ns3:FareComponent> <ns3:FareComponent> <ns3:SegmentReference>SEG2</ns3:SegmentReference> <ns3:FareBasis> <ns3:FareBasisCode> <ns3:Code>SFLRT</ns3:Code> </ns3:FareBasisCode> <ns3:RBD>S</ns3:RBD> </ns3:FareBasis> <ns3:FareRules> <ns3:Ticketing> <ns3:Endorsements> <ns3:Endorsement>ENDO</ns3:Endorsement> </ns3:Endorsements> </ns3:Ticketing> <ns3:Remarks> <ns3:Remark>UnstructuredFareCalc</ns3:Remark> </ns3:Remarks> </ns3:FareRules> </ns3:FareComponent> </ns3:FareDetail> </ns3:OfferPrice> </ns3:ReShopPricedOffer> </ns3:ReShopOffer> </ns3:ReShopOffers> <ns3:DataList> <ns3:FlightSegmentList> <ns3:FlightSegment SegmentKey="SEG1"> <ns3:Departure> <ns3:AirportCode>MUC</ns3:AirportCode> <ns3:Date>2019-11-19</ns3:Date> <ns3:Time>13:45</ns3:Time> </ns3:Departure> <ns3:Arrival> <ns3:AirportCode>DME</ns3:AirportCode> <ns3:Date>2019-11-19</ns3:Date> <ns3:Time>19:00</ns3:Time> </ns3:Arrival> <ns3:MarketingCarrier> <ns3:AirlineID>S7</ns3:AirlineID> <ns3:FlightNumber>3556</ns3:FlightNumber> </ns3:MarketingCarrier> <ns3:OperatingCarrier> <ns3:AirlineID>S7</ns3:AirlineID> <ns3:FlightNumber>3556</ns3:FlightNumber> </ns3:OperatingCarrier> </ns3:FlightSegment> <ns3:FlightSegment SegmentKey="SEG2"> <ns3:Departure> <ns3:AirportCode>DME</ns3:AirportCode> <ns3:Date>2019-12-30</ns3:Date> <ns3:Time>05:00</ns3:Time> </ns3:Departure> <ns3:Arrival> <ns3:AirportCode>MUC</ns3:AirportCode> <ns3:Date>2019-12-30</ns3:Date> <ns3:Time>06:15</ns3:Time> </ns3:Arrival> <ns3:MarketingCarrier> <ns3:AirlineID>S7</ns3:AirlineID> <ns3:FlightNumber>3551</ns3:FlightNumber> </ns3:MarketingCarrier> <ns3:OperatingCarrier> <ns3:AirlineID>S7</ns3:AirlineID> <ns3:FlightNumber>3551</ns3:FlightNumber> </ns3:OperatingCarrier> </ns3:FlightSegment> </ns3:FlightSegmentList> <ns3:OriginDestinationList> <ns3:OriginDestination OriginDestinationKey="OD1"> <ns3:DepartureCode>MUC</ns3:DepartureCode> <ns3:ArrivalCode>DME</ns3:ArrivalCode> <ns3:FlightReferences>SEG1</ns3:FlightReferences> </ns3:OriginDestination> <ns3:OriginDestination OriginDestinationKey="OD2"> <ns3:DepartureCode>DME</ns3:DepartureCode> <ns3:ArrivalCode>MUC</ns3:ArrivalCode> <ns3:FlightReferences>SEG2</ns3:FlightReferences> </ns3:OriginDestination> </ns3:OriginDestinationList> <ns3:TermsList ListKey="TL1"> <ns3:Term refs="SEG1" ObjectKey="T1"> <ns3:AvailablePeriod> <ns3:Earliest /> <ns3:Latest /> </ns3:AvailablePeriod> </ns3:Term> <ns3:Term refs="SEG2" ObjectKey="T2"> <ns3:AvailablePeriod> <ns3:Earliest /> <ns3:Latest /> </ns3:AvailablePeriod> </ns3:Term> </ns3:TermsList> </ns3:DataList> </ns3:Response> </ns3:ItinReshopRS> </ns2:Body> </ns2:Envelope>
Step 4: Request for reservation pricing
S7 Agent executes a reprice operation with itinerary info and Agent/Corporate client codes of chosen solution.
All information must be taken from AirShoppingRS:
itinerary details (airport codes and dates for origin and departure, airline code and flight number);
<FlightItem> block must fill in like in OrderCreateRQ
passenger types (PTC);
fare details (RBD and fare code);
Agent/Corporate client codes are the same.
<Envelope xmlns="http://schemas.xmlsoap.org/soap/envelope/"> <Header /> <Body> <ItinReshopRQ Version="" xmlns="http://www.iata.org/IATA/EDIST"> <Document /> <Party> <Sender> <AgentUserSender> <Name>S7-AIDL</Name> <OtherIDs> <OtherID Description="POS_Type">1</OtherID> <OtherID Description="requestorType">U</OtherID> </OtherIDs> <PseudoCity>OVBS728AB</PseudoCity> <AgentUserID>S7AgentAPI</AgentUserID> <UserRole>AS</UserRole> </AgentUserSender> </Sender> </Party> <Query> <Reshop> <Actions> <ActionType /> <BookingReferences> <BookingReference> <ID>N39VQH</ID> <AirlineID>S7</AirlineID> </BookingReference> </BookingReferences> <OrderItems> <OrderItem> <FlightItem> <OriginDestination> <Flight> <SegmentKey>FL1</SegmentKey> <Departure> <AirportCode>MUC</AirportCode> <Date>2019-11-19</Date> <Time>13:45</Time> </Departure> <Arrival> <AirportCode>DME</AirportCode> <Date>2019-11-19</Date> <Time>19:00</Time> </Arrival> <MarketingCarrier> <AirlineID>S7</AirlineID> <FlightNumber>3556</FlightNumber> </MarketingCarrier> <OperatingCarrier> <AirlineID>S7</AirlineID> <FlightNumber>3556</FlightNumber> </OperatingCarrier> </Flight> </OriginDestination> <OriginDestination> <Flight> <SegmentKey>FL2</SegmentKey> <Departure> <AirportCode>DME</AirportCode> <Date>2019-12-30</Date> <Time>05:00</Time> </Departure> <Arrival> <AirportCode>MUC</AirportCode> <Date>2019-12-30</Date> <Time>06:15</Time> </Arrival> <MarketingCarrier> <AirlineID>S7</AirlineID> <FlightNumber>3551</FlightNumber> </MarketingCarrier> <OperatingCarrier> <AirlineID>S7</AirlineID> <FlightNumber>3551</FlightNumber> </OperatingCarrier> </Flight> </OriginDestination> <FareDetail> <FareComponent refs="FL1"> <FareBasis> <FareBasisCode> <Code>WFLRT</Code> </FareBasisCode> <RBD>W</RBD> </FareBasis> </FareComponent> <FareComponent refs="FL2"> <FareBasis> <FareBasisCode> <Code>SFLRT</Code> </FareBasisCode> <RBD>S</RBD> </FareBasis> </FareComponent> </FareDetail> </FlightItem> <Associations> <Passengers> <PassengerReferences>SH2</PassengerReferences> </Passengers> </Associations> </OrderItem> </OrderItems> <Passengers> <Passenger ObjectKey="SH2"> <PTC Quantity="1">ADT</PTC> <Name> <Surname /> </Name> </Passenger> </Passengers> <Qualifiers> <Qualifier> <SpecialFareQualifiers> <AirlineID>S7</AirlineID> <CompanyIndex>QUW2145</CompanyIndex> <Account>1032</Account> </SpecialFareQualifiers> </Qualifier> </Qualifiers> </Actions> </Reshop> </Query> </ItinReshopRQ> </Body> </Envelope>
<?xml version="1.0" encoding="UTF-8" standalone="yes"?> <ns2:Envelope xmlns:ns2="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns3="http://www.iata.org/IATA/EDIST"> <ns2:Body> <ns3:ItinReshopRS Version=""> <ns3:Document> <ns3:Name>1.0</ns3:Name> </ns3:Document> <ns3:Success /> <ns3:Response> <ns3:ItinReshopProcessing /> <ns3:Passengers> <ns3:Passenger ObjectKey="SH2"> <ns3:PTC Quantity="1">ADT</ns3:PTC> <ns3:Name> <ns3:Surname>Anonymous</ns3:Surname> </ns3:Name> </ns3:Passenger> </ns3:Passengers> <ns3:Order> <ns3:OrderID Owner="S7">Order</ns3:OrderID> <ns3:BookingReferences> <ns3:BookingReference> <ns3:ID>N39VQH</ns3:ID> <ns3:AirlineID>S7</ns3:AirlineID> </ns3:BookingReference> </ns3:BookingReferences> <ns3:OrderItems> <ns3:OrderItem> <ns3:OrderItemID Owner="S7">NONE</ns3:OrderItemID> </ns3:OrderItem> </ns3:OrderItems> </ns3:Order> <ns3:ReShopOffers> <ns3:ReShopOffer ObjectKey="RO1"> <ns3:OfferID Owner="S7">Offer</ns3:OfferID> <ns3:TotalPrice> <ns3:DetailCurrencyPrice> <ns3:Total Code="RUB">17288</ns3:Total> <ns3:Details> <ns3:Detail> <ns3:SubTotal Code="RUB">10660</ns3:SubTotal> <ns3:Application>fare</ns3:Application> </ns3:Detail> <ns3:Detail> <ns3:SubTotal Code="RUB">1725</ns3:SubTotal> <ns3:Application>discount</ns3:Application> </ns3:Detail> </ns3:Details> <ns3:Taxes> <ns3:Total Code="RUB">6628</ns3:Total> </ns3:Taxes> <ns3:Fees> <ns3:Total Code="RUB">0</ns3:Total> </ns3:Fees> </ns3:DetailCurrencyPrice> </ns3:TotalPrice> <ns3:ReShopPricedOffer> <ns3:OfferPrice> <ns3:RequestedDate> <ns3:PriceDetail> <ns3:TotalAmount> <ns3:DetailCurrencyPrice> <ns3:Total Code="RUB">17288</ns3:Total> <ns3:Details> <ns3:Detail> <ns3:SubTotal Code="RUB">10660</ns3:SubTotal> <ns3:Application>fare</ns3:Application> </ns3:Detail> <ns3:Detail> <ns3:SubTotal Code="RUB">1725</ns3:SubTotal> <ns3:Application>discount</ns3:Application> </ns3:Detail> </ns3:Details> <ns3:Taxes> <ns3:Total Code="RUB">6628</ns3:Total> </ns3:Taxes> <ns3:Fees> <ns3:Total Code="RUB">0</ns3:Total> </ns3:Fees> </ns3:DetailCurrencyPrice> </ns3:TotalAmount> <ns3:BaseAmount Code="RUB">10660</ns3:BaseAmount> <ns3:FareFiledIn> <ns3:BaseAmount Code="EUR">172.00</ns3:BaseAmount> <ns3:ExchangeRate>72.0</ns3:ExchangeRate> </ns3:FareFiledIn> <ns3:Discount> <ns3:DiscountAmount Code="RUB">1725</ns3:DiscountAmount> <ns3:DiscountPercent>14</ns3:DiscountPercent> </ns3:Discount> <ns3:Surcharges> <ns3:Surcharge> <ns3:Total Code="RUB">0</ns3:Total> </ns3:Surcharge> </ns3:Surcharges> <ns3:Taxes> <ns3:Total Code="RUB">6628</ns3:Total> <ns3:Breakdown> <ns3:Tax> <ns3:Amount Code="RUB">3600</ns3:Amount> <ns3:TaxCode>YR</ns3:TaxCode> </ns3:Tax> <ns3:Tax> <ns3:Amount Code="RUB">532</ns3:Amount> <ns3:TaxCode>OY</ns3:TaxCode> </ns3:Tax> <ns3:Tax> <ns3:Amount Code="RUB">541</ns3:Amount> <ns3:TaxCode>DE</ns3:TaxCode> </ns3:Tax> <ns3:Tax> <ns3:Amount Code="RUB">1675</ns3:Amount> <ns3:TaxCode>RA</ns3:TaxCode> </ns3:Tax> <ns3:Tax> <ns3:Amount Code="RUB">140</ns3:Amount> <ns3:TaxCode>RI</ns3:TaxCode> </ns3:Tax> <ns3:Tax> <ns3:Amount Code="RUB">140</ns3:Amount> <ns3:TaxCode>RI</ns3:TaxCode> </ns3:Tax> </ns3:Breakdown> </ns3:Taxes> </ns3:PriceDetail> <ns3:Associations> <ns3:AssociatedTraveler> <ns3:TravelerReferences>SH2</ns3:TravelerReferences> </ns3:AssociatedTraveler> <ns3:OfferDetailAssociation> <ns3:OfferTermReferences>T1 T2</ns3:OfferTermReferences> </ns3:OfferDetailAssociation> </ns3:Associations> </ns3:RequestedDate> <ns3:FareDetail> <ns3:FareComponent> <ns3:SegmentReference>SEG1</ns3:SegmentReference> <ns3:FareBasis> <ns3:FareBasisCode> <ns3:Code>WFLRT</ns3:Code> </ns3:FareBasisCode> <ns3:RBD>W</ns3:RBD> </ns3:FareBasis> <ns3:FareRules> <ns3:Ticketing> <ns3:Endorsements> <ns3:Endorsement>ENDO</ns3:Endorsement> </ns3:Endorsements> </ns3:Ticketing> <ns3:Remarks> <ns3:Remark>UnstructuredFareCalc</ns3:Remark> </ns3:Remarks> </ns3:FareRules> </ns3:FareComponent> <ns3:FareComponent> <ns3:SegmentReference>SEG2</ns3:SegmentReference> <ns3:FareBasis> <ns3:FareBasisCode> <ns3:Code>SFLRT</ns3:Code> </ns3:FareBasisCode> <ns3:RBD>S</ns3:RBD> </ns3:FareBasis> <ns3:FareRules> <ns3:Ticketing> <ns3:Endorsements> <ns3:Endorsement>ENDO</ns3:Endorsement> </ns3:Endorsements> </ns3:Ticketing> <ns3:Remarks> <ns3:Remark>UnstructuredFareCalc</ns3:Remark> </ns3:Remarks> </ns3:FareRules> </ns3:FareComponent> </ns3:FareDetail> </ns3:OfferPrice> </ns3:ReShopPricedOffer> </ns3:ReShopOffer> </ns3:ReShopOffers> <ns3:DataList> <ns3:FlightSegmentList> <ns3:FlightSegment SegmentKey="SEG1"> <ns3:Departure> <ns3:AirportCode>MUC</ns3:AirportCode> <ns3:Date>2019-11-19</ns3:Date> <ns3:Time>13:45</ns3:Time> </ns3:Departure> <ns3:Arrival> <ns3:AirportCode>DME</ns3:AirportCode> <ns3:Date>2019-11-19</ns3:Date> <ns3:Time>19:00</ns3:Time> </ns3:Arrival> <ns3:MarketingCarrier> <ns3:AirlineID>S7</ns3:AirlineID> <ns3:FlightNumber>3556</ns3:FlightNumber> </ns3:MarketingCarrier> <ns3:OperatingCarrier> <ns3:AirlineID>S7</ns3:AirlineID> <ns3:FlightNumber>3556</ns3:FlightNumber> </ns3:OperatingCarrier> </ns3:FlightSegment> <ns3:FlightSegment SegmentKey="SEG2"> <ns3:Departure> <ns3:AirportCode>DME</ns3:AirportCode> <ns3:Date>2019-12-30</ns3:Date> <ns3:Time>05:00</ns3:Time> </ns3:Departure> <ns3:Arrival> <ns3:AirportCode>MUC</ns3:AirportCode> <ns3:Date>2019-12-30</ns3:Date> <ns3:Time>06:15</ns3:Time> </ns3:Arrival> <ns3:MarketingCarrier> <ns3:AirlineID>S7</ns3:AirlineID> <ns3:FlightNumber>3551</ns3:FlightNumber> </ns3:MarketingCarrier> <ns3:OperatingCarrier> <ns3:AirlineID>S7</ns3:AirlineID> <ns3:FlightNumber>3551</ns3:FlightNumber> </ns3:OperatingCarrier> </ns3:FlightSegment> </ns3:FlightSegmentList> <ns3:OriginDestinationList> <ns3:OriginDestination OriginDestinationKey="OD1"> <ns3:DepartureCode>MUC</ns3:DepartureCode> <ns3:ArrivalCode>DME</ns3:ArrivalCode> <ns3:FlightReferences>SEG1</ns3:FlightReferences> </ns3:OriginDestination> <ns3:OriginDestination OriginDestinationKey="OD2"> <ns3:DepartureCode>DME</ns3:DepartureCode> <ns3:ArrivalCode>MUC</ns3:ArrivalCode> <ns3:FlightReferences>SEG2</ns3:FlightReferences> </ns3:OriginDestination> </ns3:OriginDestinationList> <ns3:TermsList ListKey="TL1"> <ns3:Term refs="SEG1" ObjectKey="T1"> <ns3:AvailablePeriod> <ns3:Earliest /> <ns3:Latest /> </ns3:AvailablePeriod> </ns3:Term> <ns3:Term refs="SEG2" ObjectKey="T2"> <ns3:AvailablePeriod> <ns3:Earliest /> <ns3:Latest /> </ns3:AvailablePeriod> </ns3:Term> </ns3:TermsList> </ns3:DataList> </ns3:Response> </ns3:ItinReshopRS> </ns2:Body> </ns2:Envelope>
Step 5: Issue tickets for all passenger
S7 Agent executes a demandTickets operation with reservation reference, pricing details and Agent/Corporate client codes.
Add information about PNR from OrderViewRS
Envelope/Body/OrderViewRS/Response/Order/BookingReferences/BookingReference/ID
Fill in the form of payment as in example <*QUW0774>, where QUW0774 - client code
<Payments> <Payment> <Type> <Code>MS</Code> </Type> <Other> <Remarks> <Remark>*QUW0774</Remark> </Remarks> </Other> </Payment> </Payments>
- Mark agency and corporate client code in DataList
<DataLists> <InstructionsList> <Instruction ListKey="CC"> <SpecialBookingInstruction> <Code>QUW2145</Code> <Definition>1032</Definition> </SpecialBookingInstruction> </Instruction> </InstructionsList> </DataLists>
<Envelope xmlns="http://schemas.xmlsoap.org/soap/envelope/"> <Header /> <Body> <AirDocIssueRQ xmlns="http://www.iata.org/IATA/EDIST" Version="1.0"> <Document /> <Party> <Sender> <AgentUserSender> <Name>S7-AIDL</Name> <OtherIDs> <OtherID Description="POS_Type">1</OtherID> <OtherID Description="requestorType">U</OtherID> </OtherIDs> <PseudoCity>OVBS728AB</PseudoCity> <AgentUserID>S7AgentAPI</AgentUserID> <UserRole>AS</UserRole> </AgentUserSender> </Sender> </Party> <Query> <TicketDocQuantity>1</TicketDocQuantity> <TicketDocInfo> <TravelerInfo> <Surname>ANY</Surname> <Given>ANY</Given> <PTC>ADT</PTC> </TravelerInfo> <BookingReference> <ID>N39VQH</ID> <AirlineID>S7</AirlineID> </BookingReference> <Payments> <Payment ObjectKey="ETK"> <Type> <Code>MS</Code> </Type> <Other> <Remarks> <Remark>*QUW2145</Remark> </Remarks> </Other> </Payment> </Payments> </TicketDocInfo> <DataLists> <InstructionsList> <Instruction ListKey="CC"> <SpecialBookingInstruction> <Code>QUW2145</Code> <Definition>1032</Definition> </SpecialBookingInstruction> </Instruction> </InstructionsList> </DataLists> </Query> </AirDocIssueRQ> </Body> </Envelope>
<?xml version="1.0" encoding="UTF-8" standalone="yes"?> <ns2:Envelope xmlns:ns2="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns3="http://www.iata.org/IATA/EDIST"> <ns2:Body> <ns3:AirDocDisplayRS Version=""> <ns3:Document> <ns3:Name>1.0</ns3:Name> </ns3:Document> <ns3:Success /> <ns3:Response> <ns3:TicketDocInfos> <ns3:TicketDocInfo> <ns3:Traveler> <ns3:Surname>PILATUS</ns3:Surname> <ns3:Given>PONTIUS</ns3:Given> <ns3:PTC>ADT</ns3:PTC> </ns3:Traveler> <ns3:IssuingAirlineInfo> <ns3:AirlineName>S7</ns3:AirlineName> </ns3:IssuingAirlineInfo> <ns3:BookingReferences> <ns3:BookingReference> <ns3:ID>N39VQH</ns3:ID> <ns3:AirlineID>S7</ns3:AirlineID> </ns3:BookingReference> </ns3:BookingReferences> <ns3:Payments> <ns3:Payment> <ns3:Method /> <ns3:Amount Code="RUB">17288.00</ns3:Amount> </ns3:Payment> </ns3:Payments> <ns3:OriginDestination> <ns3:Origin>MUC</ns3:Origin> <ns3:Destination>MUC</ns3:Destination> </ns3:OriginDestination> <ns3:FareInfo> <ns3:BaseFare> <ns3:Amount Code="RUB">10660.00</ns3:Amount> </ns3:BaseFare> <ns3:EquivFare EquivRate="72.00"> <ns3:Amount Code="EUR">172.00</ns3:Amount> </ns3:EquivFare> <ns3:Total> <ns3:Amount Code="RUB">17288.00</ns3:Amount> </ns3:Total> <ns3:Taxes> <ns3:Total Code="RUB">6628.00</ns3:Total> <ns3:Breakdown> <ns3:Tax> <ns3:Amount Code="RUB">3600</ns3:Amount> <ns3:TaxCode>YR</ns3:TaxCode> </ns3:Tax> <ns3:Tax> <ns3:Amount Code="RUB">532</ns3:Amount> <ns3:TaxCode>OY</ns3:TaxCode> </ns3:Tax> <ns3:Tax> <ns3:Amount Code="RUB">541</ns3:Amount> <ns3:TaxCode>DE</ns3:TaxCode> </ns3:Tax> <ns3:Tax> <ns3:Amount Code="RUB">1675</ns3:Amount> <ns3:TaxCode>RA</ns3:TaxCode> </ns3:Tax> <ns3:Tax> <ns3:Amount Code="RUB">140</ns3:Amount> <ns3:TaxCode>RI</ns3:TaxCode> </ns3:Tax> <ns3:Tax> <ns3:Amount Code="RUB">140</ns3:Amount> <ns3:TaxCode>RI</ns3:TaxCode> </ns3:Tax> </ns3:Breakdown> </ns3:Taxes> <ns3:UnstructuredFareCalcInfo> <ns3:Info>MUC S7 MOW53.92S7 MUC111.69NUC165.61END ROE0.893096</ns3:Info> </ns3:UnstructuredFareCalcInfo> </ns3:FareInfo> <ns3:TicketDocument> <ns3:TicketDocNbr>4212402062307</ns3:TicketDocNbr> <ns3:Type> <ns3:Code>702</ns3:Code> </ns3:Type> <ns3:NumberofBooklets>2</ns3:NumberofBooklets> <ns3:DateOfIssue>2019-06-04</ns3:DateOfIssue> <ns3:CouponInfo> <ns3:CouponNumber>1</ns3:CouponNumber> <ns3:FareBasisCode> <ns3:Code>WFLRT</ns3:Code> </ns3:FareBasisCode> <ns3:CouponValid> <ns3:EffectiveDatePeriod> <ns3:Expiration>2020-09-04</ns3:Expiration> </ns3:EffectiveDatePeriod> </ns3:CouponValid> <ns3:Status> <ns3:Code>OPEN FOR USE</ns3:Code> </ns3:Status> <ns3:SoldAirlineInfo> <ns3:Departure> <ns3:AirportCode>MUC</ns3:AirportCode> <ns3:Date>2019-11-19</ns3:Date> <ns3:Time>13:45</ns3:Time> </ns3:Departure> <ns3:Arrival> <ns3:AirportCode>DME</ns3:AirportCode> <ns3:Date>2019-11-19</ns3:Date> <ns3:Time>19:00</ns3:Time> </ns3:Arrival> <ns3:OperatingCarrier> <ns3:ResBookDesigCode>W</ns3:ResBookDesigCode> </ns3:OperatingCarrier> <ns3:MarketingCarrier> <ns3:AirlineID>S7</ns3:AirlineID> <ns3:FlightNumber>3556</ns3:FlightNumber> </ns3:MarketingCarrier> <ns3:TicketedBaggageAllowance> <ns3:AllowableBag Type="PC" Number="1" /> </ns3:TicketedBaggageAllowance> </ns3:SoldAirlineInfo> </ns3:CouponInfo> <ns3:CouponInfo> <ns3:CouponNumber>2</ns3:CouponNumber> <ns3:FareBasisCode> <ns3:Code>SFLRT</ns3:Code> </ns3:FareBasisCode> <ns3:CouponValid> <ns3:EffectiveDatePeriod> <ns3:Expiration>2020-09-04</ns3:Expiration> </ns3:EffectiveDatePeriod> </ns3:CouponValid> <ns3:Status> <ns3:Code>OPEN FOR USE</ns3:Code> </ns3:Status> <ns3:SoldAirlineInfo> <ns3:Departure> <ns3:AirportCode>DME</ns3:AirportCode> <ns3:Date>2019-12-30</ns3:Date> <ns3:Time>05:00</ns3:Time> </ns3:Departure> <ns3:Arrival> <ns3:AirportCode>MUC</ns3:AirportCode> <ns3:Date>2019-12-30</ns3:Date> <ns3:Time>06:15</ns3:Time> </ns3:Arrival> <ns3:OperatingCarrier> <ns3:ResBookDesigCode>S</ns3:ResBookDesigCode> </ns3:OperatingCarrier> <ns3:MarketingCarrier> <ns3:AirlineID>S7</ns3:AirlineID> <ns3:FlightNumber>3551</ns3:FlightNumber> </ns3:MarketingCarrier> <ns3:TicketedBaggageAllowance> <ns3:AllowableBag Type="PC" Number="1" /> </ns3:TicketedBaggageAllowance> </ns3:SoldAirlineInfo> </ns3:CouponInfo> </ns3:TicketDocument> <ns3:Price> <ns3:Total Code="RUB">17288.00</ns3:Total> <ns3:Details> <ns3:Detail> <ns3:Application>discount</ns3:Application> <ns3:Amount>14.00</ns3:Amount> </ns3:Detail> </ns3:Details> </ns3:Price> <ns3:Commission> <ns3:Amount>0</ns3:Amount> <ns3:Remarks> <ns3:Remark>S7 ONLY/REF/CHNG/RESTR</ns3:Remark> </ns3:Remarks> </ns3:Commission> <ns3:PassengerSpecificData>111111111</ns3:PassengerSpecificData> </ns3:TicketDocInfo> </ns3:TicketDocInfos> </ns3:Response> </ns3:AirDocDisplayRS> </ns2:Body> </ns2:Envelope>
- No labels