Versions Compared

Key

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

Overview

An example of end-to-end scenario based on on operation flow and user story

Excerpt

Operation flow

searchFlightsJourney → book (Flight) → read → reprice without PNR → reprice with PNR → demandTickets (ETK)

User story

S7 Agent wants to book round trip flight from Moskow (DME) to Chita (HTA) for group of travelers (1 adult, 1 children and 1 infant on a lap). He also wants to book fare for subsidised passenger group. He chooses one way S7 flights.


Scenario

The general process for book a trip such as this is:

  1. Initial search for flight solutions: S7 Agent executes a searchFlightsJourney operation with itinerary criteria and subsidised passenger types count;

  2. Book a reservation: S7 Agent executes a book operation with passenger details and itinerary info of chosen solution from search results;

  3. Read the reservation: S7 Agent executes a read operation.

  4. Request for informative reservation pricing: S7 Agent executes a reprice operation with itinerary info of chosen solution;

  5. Request for reservation pricing: S7 Agent executes a reprice operation with itinerary info of chosen solution;

  6. Issue tickets for all passenger: S7 Agent executes a demandTickets operation with reservation reference and pricing details.


Table of contents:

Table of Contents


Note

(lightbulb) Before you can send a request to S7 Agent API, you must get an SSL certificate and configure your software.

(lightbulb) Use subsidised passenger types only for subsidised flow.


Step 1: Initial search for flight solutions


S7 Agent executes a searchFlightsJourney operation with itinerary criteria and passenger types

(lightbulb) Use PTC types: NTL for adult passenger, CHR for child, INR INF for infant to get subsidised fares

Itinerary criteria:

Moscow (DME) to Chita (HTA)

Passenger types count:

1xNTL 1xCHR 1xINR1xINF

Expand
titleRequest
Code Block
languagexml
<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>
                        <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>
            <Parameters>
                <CurrCodes>
                    <CurrCode>RUB</CurrCode>
                </CurrCodes>
            </Parameters>
            <Travelers>
                <Traveler>
                    <AnonymousTraveler>
                        <PTC Quantity="1">NTL</PTC>
                    </AnonymousTraveler>
                </Traveler>
                <Traveler>
                    <AnonymousTraveler>
                        <PTC Quantity="1">CHR</PTC>
                    </AnonymousTraveler>
                </Traveler>
                <Traveler>
                    <AnonymousTraveler>
                        <PTC Quantity="1">INR<>INF</PTC>
                    </AnonymousTraveler>
                </Traveler>
            </Travelers>
            <CoreQuery>
                <OriginDestinations>
                    <OriginDestination>
                        <Departure>
                            <AirportCode>DME</AirportCode>
                            <Date>2022-09-11</Date>
                        </Departure>
                        <Arrival>
                            <AirportCode>HTA</AirportCode>
                        </Arrival>
                    </OriginDestination>
                </OriginDestinations>
            </CoreQuery>
        </AirShoppingRQ>
    </Body>
</Envelope>


Expand
titleResponse
Code Block
languagexml
                       <ns3:AirlineOffer>
                        <ns3:OfferID Owner="S7">OF6</ns3:OfferID>
                        <ns3:TotalPrice>
                            <ns3:DetailCurrencyPrice>
                                <ns3:Total Code="RUB">16100</ns3:Total>
                                <ns3:Details>
                                    <ns3:Detail>
                                        <ns3:SubTotal Code="RUB">16100</ns3:SubTotal>
                                        <ns3:Application>Fare</ns3:Application>
                                    </ns3:Detail>
                                </ns3:Details>
                                <ns3:Taxes>
                                    <ns3:Total Code="RUB">0</ns3:Total>
                                </ns3:Taxes>
                            </ns3:DetailCurrencyPrice>
                        </ns3:TotalPrice>
                        <ns3:Disclosure>
                            <ns3:Description>
                                <ns3:Text>STANDARD ECONOMY</ns3:Text>
                            </ns3:Description>
                        </ns3:Disclosure>
                        <ns3:PricedOffer>
                            <ns3:OfferPrice OfferItemID="OF6SL1">
                                <ns3:RequestedDate>
                                    <ns3:PriceDetail>
                                        <ns3:TotalAmount>
                                            <ns3:DetailCurrencyPrice>
                                                <ns3:Total Code="RUB">16100</ns3:Total>
                                                <ns3:Taxes>
                                                    <ns3:Total Code="RUB">0</ns3:Total>
                                                </ns3:Taxes>
                                            </ns3:DetailCurrencyPrice>
                                        </ns3:TotalAmount>
                                        <ns3:BaseAmount Code="RUB">16100</ns3:BaseAmount>
                                    </ns3:PriceDetail>
                                    <ns3:Associations>
                                        <ns3:OtherAssociation>
                                            <ns3:OtherAssociation>
                                                <ns3:Type>SEG1 DME-HTA</ns3:Type>
                                                <ns3:ReferenceValue>Meal_H</ns3:ReferenceValue>
                                            </ns3:OtherAssociation>
                                        </ns3:OtherAssociation>
                                    </ns3:Associations>
                                    <ns3:Associations>
                                        <ns3:AssociatedTraveler>
                                            <ns3:TravelerReferences>SH4</ns3:TravelerReferences>
                                        </ns3:AssociatedTraveler>
                                        <ns3:ApplicableFlight>
                                            <ns3:OriginDestinationReferences>OD1</ns3:OriginDestinationReferences>
                                            <ns3:FlightSegmentReference ref="SEG1">
                                                <ns3:Cabin>
                                                    <ns3:CabinDesignator>Y</ns3:CabinDesignator>
                                                    <ns3:MarketingName>STANDARD ECONOMY</ns3:MarketingName>
                                                </ns3:Cabin>
                                            </ns3:FlightSegmentReference>
                                            <ns3:FlightSegmentReference ref="SEG1">
                                                <ns3:ClassOfService>
                                                    <ns3:Code SeatsLeft="9">G</ns3:Code>
                                                    <ns3:MarketingName>GSTOW</ns3:MarketingName>
                                                </ns3:ClassOfService>
                                                <ns3:BagDetailAssociation>
                                                    <ns3:CheckedBagReferences>BG5</ns3:CheckedBagReferences>
                                                    <ns3:CarryOnReferences>CO2</ns3:CarryOnReferences>
                                                </ns3:BagDetailAssociation>
                                            </ns3:FlightSegmentReference>
                                        </ns3:ApplicableFlight>
                                        <ns3:OtherAssociation>
                                            <ns3:OtherAssociation>
                                                <ns3:Type>GSTOW</ns3:Type>
                                                <ns3:ReferenceValue>PL2</ns3:ReferenceValue>
                                            </ns3:OtherAssociation>
                                        </ns3:OtherAssociation>
                                    </ns3:Associations>
                                    <ns3:Associations>
                                        <ns3:AssociatedTraveler>
                                            <ns3:TravelerReferences>SH5</ns3:TravelerReferences>
                                        </ns3:AssociatedTraveler>
                                        <ns3:ApplicableFlight>
                                            <ns3:OriginDestinationReferences>OD1</ns3:OriginDestinationReferences>
                                            <ns3:FlightSegmentReference ref="SEG1">
                                                <ns3:Cabin>
                                                    <ns3:CabinDesignator>Y</ns3:CabinDesignator>
                                                    <ns3:MarketingName>STANDARD ECONOMY</ns3:MarketingName>
                                                </ns3:Cabin>
                                            </ns3:FlightSegmentReference>
                                            <ns3:FlightSegmentReference ref="SEG1">
                                                <ns3:ClassOfService>
                                                    <ns3:Code SeatsLeft="9">G</ns3:Code>
                                                    <ns3:MarketingName>GSTOW</ns3:MarketingName>
                                                </ns3:ClassOfService>
                                                <ns3:BagDetailAssociation>
                                                    <ns3:CheckedBagReferences>BG5</ns3:CheckedBagReferences>
                                                    <ns3:CarryOnReferences>CO2</ns3:CarryOnReferences>
                                                </ns3:BagDetailAssociation>
                                            </ns3:FlightSegmentReference>
                                        </ns3:ApplicableFlight>
                                        <ns3:OtherAssociation>
                                            <ns3:OtherAssociation>
                                                <ns3:Type>GSTOW</ns3:Type>
                                                <ns3:ReferenceValue>PL2</ns3:ReferenceValue>
                                            </ns3:OtherAssociation>
                                        </ns3:OtherAssociation>
                                    </ns3:Associations>
                                    <ns3:Associations>
                                        <ns3:AssociatedTraveler>
                                            <ns3:TravelerReferences>SH6</ns3:TravelerReferences>
                                        </ns3:AssociatedTraveler>
                                        <ns3:ApplicableFlight>
                                            <ns3:OriginDestinationReferences>OD1</ns3:OriginDestinationReferences>
                                            <ns3:FlightSegmentReference ref="SEG1">
                                                <ns3:Cabin>
                                                    <ns3:CabinDesignator>Y</ns3:CabinDesignator>
                                                    <ns3:MarketingName>STANDARD ECONOMY</ns3:MarketingName>
                                                </ns3:Cabin>
                                            </ns3:FlightSegmentReference>
                                            <ns3:FlightSegmentReference ref="SEG1">
                                                <ns3:ClassOfService>
                                                    <ns3:Code SeatsLeft="9">G</ns3:Code>
                                                    <ns3:MarketingName>GSTOW</ns3:MarketingName>
                                                </ns3:ClassOfService>
                                                <ns3:BagDetailAssociation>
                                                    <ns3:CheckedBagReferences>BG5</ns3:CheckedBagReferences>
                                                    <ns3:CarryOnReferences>CO2</ns3:CarryOnReferences>
                                                </ns3:BagDetailAssociation>
                                            </ns3:FlightSegmentReference>
                                        </ns3:ApplicableFlight>
                                        <ns3:OtherAssociation>
                                            <ns3:OtherAssociation>
                                                <ns3:Type>GSTOW</ns3:Type>
                                                <ns3:ReferenceValue>PL2</ns3:ReferenceValue>
                                            </ns3:OtherAssociation>
                                        </ns3:OtherAssociation>
                                    </ns3:Associations>
                                </ns3:RequestedDate>
                                <ns3:FareDetail>
                                    <ns3:FareComponent refs="SH4" ObjectKey="FC16">
                                        <ns3:Parameters Quantity="1"/>
                                        <ns3:PriceBreakdown>
                                            <ns3:Price>
                                                <ns3:BaseAmount Code="RUB">9200</ns3:BaseAmount>
                                                <ns3:Taxes>
                                                    <ns3:Total Code="RUB">0</ns3:Total>
                                                </ns3:Taxes>
                                            </ns3:Price>
                                        </ns3:PriceBreakdown>
                                    </ns3:FareComponent>
                                    <ns3:FareComponent refs="SH5" ObjectKey="FC17">
                                        <ns3:Parameters Quantity="1"/>
                                        <ns3:PriceBreakdown>
                                            <ns3:Price>
                                                <ns3:BaseAmount Code="RUB">6900</ns3:BaseAmount>
                                                <ns3:Taxes>
                                                    <ns3:Total Code="RUB">0</ns3:Total>
                                                </ns3:Taxes>
                                            </ns3:Price>
                                        </ns3:PriceBreakdown>
                                    </ns3:FareComponent>
                                    <ns3:FareComponent refs="SH6" ObjectKey="FC18">
                                        <ns3:Parameters Quantity="1"/>
                                        <ns3:PriceBreakdown>
                                            <ns3:Price>
                                                <ns3:BaseAmount Code="RUB">0</ns3:BaseAmount>
                                                <ns3:Taxes>
                                                    <ns3:Total Code="RUB">0</ns3:Total>
                                                </ns3:Taxes>
                                            </ns3:Price>
                                        </ns3:PriceBreakdown>
                                    </ns3:FareComponent>
                                </ns3:FareDetail>
                            </ns3:OfferPrice>
                        </ns3:PricedOffer>
                    </ns3:AirlineOffer>
                </ns3:AirlineOffers>

Received solutions divided by fare family and mostly includes 6 sub solutions (Basic Economy, Standard Economy, PlusEconomy, Basic Business, Standard Business, Plus Business) for each itinerary solution.
Received solutions contain both subsidised and non-subsidised fares.

Step 2: Book a reservation

S7 Agent executes a book operation with passenger details and itinerary info of chosen solution from search results.

Note

(lightbulb) Use PTC types: NTL for adult passenger, CHR for child, INR INF for infant;

(lightbulb) Tag Middle is mandatory for all passengers;

(lightbulb) Subsidised fare is available only citizens of the Russian Federation registered at the place of residence on the territory of the Far Eastern Federal District. , CountryOfResidence tag must contain value "RU"



Expand
titleRequest
Code Block
languagexml
<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>NTL</PTC>
                        <Age>
                            <BirthDate>1946-02-27</BirthDate>
                        </Age>
                        <Name>
                            <Surname>Pilatus</Surname>
                            <Given>Pontius</Given>
                            <Title>MR</Title>
                            <Middle>Governor</Middle>
                        </Name>
                        <Contacts>
                            <Contact>
                                <EmailContact>
                                    <Address>r.tkachuk@s7.ru</Address>
                                </EmailContact>
                                <PhoneContact>
                                    <Number CountryCode="7" AreaCode="495">1505070</Number>
                                </PhoneContact>
                            </Contact>
                        </Contacts>
                        <Gender>Male</Gender>
                        <PassengerIDInfo>
                            <PassengerDocument>
                                <Type>PP</Type>
                                <ID>111111111</ID>
                                <BirthCountry>RU</BirthCountry>
                                <DateOfIssue>2011-10-10</DateOfIssue>
                                <DateOfExpiration>2021-10-10</DateOfExpiration>
                                <CountryOfResidence>RU</CountryOfResidence>
                            </PassengerDocument>
                        </PassengerIDInfo>
                    </Passenger>
                    <Passenger ObjectKey="SH2">
                        <PTC>CHR</PTC>
                        <Age>
                            <BirthDate>2015-02-25</BirthDate>
                        </Age>
                        <Name>
                            <Surname>Procula</Surname>
                            <Given>Claudia</Given>
                            <Title>MRS</Title>
                            <Middle>Julioclaudian</Middle>
                        </Name>
                        <Contacts>
                            <Contact>
                                <EmailContact>
                                    <Address>chuk@s7.ru</Address>
                                </EmailContact>
                                <PhoneContact>
                                    <Number CountryCode="7" AreaCode="495">1502070</Number>
                                </PhoneContact>
                            </Contact>
                        </Contacts>
                        <Gender>Female</Gender>
                        <PassengerIDInfo>
                            <PassengerDocument>
                                <Type>PP</Type>
                                <ID>211111111</ID>
                                <BirthCountry>RU</BirthCountry>
                                <DateOfIssue>2011-10-10</DateOfIssue>
                                <DateOfExpiration>2021-10-10</DateOfExpiration>
                                <CountryOfResidence>RU</CountryOfResidence>
                            </PassengerDocument>
                        </PassengerIDInfo>
                    </Passenger>
                    <Passenger ObjectKey="SH3">
                        <PTC>INR<<PTC>INF</PTC>
                        <Age>
                            <BirthDate>2022-02-12</BirthDate>
                        </Age>
                        <Name>
                            <Surname>Pilatus</Surname>
                            <Given>Sevda</Given>
                            <Title>MRS</Title>
                            <Middle>Julioclaudian</Middle>
                        </Name>
                        <Gender>Female</Gender>
                        <PassengerIDInfo>
                            <PassengerDocument>
                                <Type>PP</Type>
                                <ID>311111111</ID>
                                <BirthCountry>RU</BirthCountry>
                                <DateOfIssue>2016-10-10</DateOfIssue>
                                <DateOfExpiration>2021-10-10</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 SH2 SH3</PassengerReference>
                                        </Passengers>
                                        <ApplicableFlight>
                                            <FlightReferences>FL1</FlightReferences>
                                        </ApplicableFlight>
                                    </OfferItem>
                                </OfferItems>
                            </Offer>
                        </Offers>
                    </ShoppingResponse>
                    <OfferItem>
                        <OfferItemID Owner="S7">UNKNOWN</OfferItemID>
                        <OfferItemType>
                            <DetailedFlightItem>
                                <OriginDestination>
                                    <Flight>
                                        <SegmentKey>FL1</SegmentKey>
                                        <Departure>
                                            <AirportCode>DME</AirportCode>
                                            <Date>2022-09-11</Date>
                                            <Time>20:25</Time>
                                        </Departure>
                                        <Arrival>
                                            <AirportCode>HTA</AirportCode>
                                            <Date>2022-09-12</Date>
                                            <Time>08:40</Time>
                                        </Arrival>
                                        <MarketingCarrier>
                                            <AirlineID>S7</AirlineID>
                                            <FlightNumber>3045</FlightNumber>
                                        </MarketingCarrier>
                                        <OperatingCarrier>
                                            <AirlineID>S7</AirlineID>
                                            <FlightNumber>3045</FlightNumber>
                                        </OperatingCarrier>
                                        <ClassOfService>
                                            <Code>G</Code>
                                        </ClassOfService>
                                    </Flight>
                                </OriginDestination>
                            </DetailedFlightItem>
                        </OfferItemType>
                    </OfferItem>
                </OrderItems>
            </Query>
        </OrderCreateRQ>
    </Body>
</Envelope>



Expand
titleResponse
Code Block
<?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">NTL</ns3:PTC>
                        <ns3:Age>
                            <ns3:BirthDate>1946-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>GOVERNOR</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">4951505070</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>2021-10-10</ns3:DateOfExpiration>
                                <ns3:CountryOfResidence>RU</ns3:CountryOfResidence>
                            </ns3:PassengerDocument>
                        </ns3:PassengerIDInfo>
                    </ns3:Passenger>
                    <ns3:Passenger ObjectKey="SH2i">
                        <ns3:PTC Quantity="1">INR<>INF</ns3:PTC>
                        <ns3:Age>
                            <ns3:BirthDate>2022-02-12</ns3:BirthDate>
                        </ns3:Age>
                        <ns3:Name>
                            <ns3:Surname>PILATUS</ns3:Surname>
                            <ns3:Given>SEVDA</ns3:Given>
                            <ns3:Title>MS</ns3:Title>
                            <ns3:Middle>JULIOCLAUDIAN</ns3:Middle>
                        </ns3:Name>
                        <ns3:Gender>Female</ns3:Gender>
                        <ns3:PassengerIDInfo>
                            <ns3:PassengerDocument>
                                <ns3:Type>PP</ns3:Type>
                                <ns3:ID>311111111</ns3:ID>
                                <ns3:BirthCountry>RU</ns3:BirthCountry>
                                <ns3:DateOfExpiration>2021-10-10</ns3:DateOfExpiration>
                                <ns3:CountryOfResidence>RU</ns3:CountryOfResidence>
                            </ns3:PassengerDocument>
                        </ns3:PassengerIDInfo>
                    </ns3:Passenger>
                    <ns3:Passenger ObjectKey="SH4">
                        <ns3:PTC Quantity="1">CHR</ns3:PTC>
                        <ns3:Age>
                            <ns3:BirthDate>2015-02-25</ns3:BirthDate>
                        </ns3:Age>
                        <ns3:Name>
                            <ns3:Surname>PROCULA</ns3:Surname>
                            <ns3:Given>CLAUDIA</ns3:Given>
                            <ns3:Title>MS</ns3:Title>
                            <ns3:Middle>JULIOCLAUDIAN</ns3:Middle>
                        </ns3:Name>
                        <ns3:Contacts>
                            <ns3:Contact>
                                <ns3:EmailContact>
                                    <ns3:Address>chuk@s7.ru</ns3:Address>
                                </ns3:EmailContact>
                                <ns3:PhoneContact>
                                    <ns3:Number CountryCode="7">4951502070</ns3:Number>
                                </ns3:PhoneContact>
                            </ns3:Contact>
                        </ns3:Contacts>
                        <ns3:Gender>Female</ns3:Gender>
                        <ns3:PassengerIDInfo>
                            <ns3:PassengerDocument>
                                <ns3:Type>PP</ns3:Type>
                                <ns3:ID>211111111</ns3:ID>
                                <ns3:BirthCountry>RU</ns3:BirthCountry>
                                <ns3:DateOfExpiration>2021-10-10</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>Q7HMFM</ns3:ID>
                            <ns3:AirlineID>S7</ns3:AirlineID>
                        </ns3:BookingReference>
                    </ns3:BookingReferences>
                    <ns3:TimeLimits>
                        <ns3:PaymentTimeLimit DateTime="2022-06-04T14:06:21"/>
                    </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>DME</ns3:AirportCode>
                                            <ns3:Date>2022-09-11</ns3:Date>
                                            <ns3:Time>20:25</ns3:Time>
                                        </ns3:Departure>
                                        <ns3:Arrival>
                                            <ns3:AirportCode>HTA</ns3:AirportCode>
                                            <ns3:Date>2022-09-12</ns3:Date>
                                            <ns3:Time>08:40</ns3:Time>
                                        </ns3:Arrival>
                                        <ns3:MarketingCarrier>
                                            <ns3:AirlineID>S7</ns3:AirlineID>
                                            <ns3:FlightNumber>3045</ns3:FlightNumber>
                                        </ns3:MarketingCarrier>
                                        <ns3:OperatingCarrier>
                                            <ns3:AirlineID>S7</ns3:AirlineID>
                                            <ns3:FlightNumber>3045</ns3:FlightNumber>
                                        </ns3:OperatingCarrier>
                                        <ns3:CabinType>
                                            <ns3:Code>Y</ns3:Code>
                                        </ns3:CabinType>
                                        <ns3:ClassOfService>
                                            <ns3:Code>G</ns3:Code>
                                        </ns3:ClassOfService>
                                    </ns3:Flight>
                                </ns3:OriginDestination>
                            </ns3:FlightItem>
                            <ns3:Associations>
                                <ns3:Passengers>
                                    <ns3:PassengerReferences>SH2 SH2i SH4</ns3:PassengerReferences>
                                </ns3:Passengers>
                            </ns3:Associations>
                        </ns3:OrderItem>
                    </ns3:OrderItems>
                </ns3:Order>
            </ns3:Response>
        </ns3:OrderViewRS>
    </ns2:Body>
</ns2:Envelope>


Step 3: Read the reservation.

S7 Agent executes a read operation.

Expand
titleRequest
Code Block
<Envelope xmlns="http://schemas.xmlsoap.org/soap/envelope/">
    <Header />
    <Body>
        <OrderRetrieveRQ Version="1.0" 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>WSS72API</AgentUserID>
                        <UserRole>AS</UserRole>
                    </AgentUserSender>
                </Sender>
            </Party>
            <Query>
                <Filters>
                    <BookingReferences>
                        <BookingReference>
                            <ID>Q7HMFM</ID>
                            <AirlineID>S7</AirlineID>
                        </BookingReference>
                    </BookingReferences>
                </Filters>
            </Query>
        </OrderRetrieveRQ>
    </Body>
</Envelope>



Expand
titleResponse
Code Block
<?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">NTL</ns3:PTC>
                        <ns3:Age>
                            <ns3:BirthDate>1946-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>74951505070</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>2121-10-10</ns3:DateOfExpiration>
                                <ns3:CountryOfResidence>RU</ns3:CountryOfResidence>
                            </ns3:PassengerDocument>
                        </ns3:PassengerIDInfo>
                    </ns3:Passenger>
                    <ns3:Passenger ObjectKey="SH2i">
                        <ns3:PTC Quantity="1">INR<>INF</ns3:PTC>
                        <ns3:Age>
                            <ns3:BirthDate>2022-02-12</ns3:BirthDate>
                        </ns3:Age>
                        <ns3:Name>
                            <ns3:Surname>PILATUS</ns3:Surname>
                            <ns3:Given>SEVDA</ns3:Given>
                            <ns3:Title>MS</ns3:Title>
                            <ns3:Middle/>
                        </ns3:Name>
                        <ns3:Gender>Female</ns3:Gender>
                        <ns3:PassengerIDInfo>
                            <ns3:PassengerDocument>
                                <ns3:Type>PP</ns3:Type>
                                <ns3:ID>311111111</ns3:ID>
                                <ns3:BirthCountry>RU</ns3:BirthCountry>
                                <ns3:DateOfExpiration>2121-10-10</ns3:DateOfExpiration>
                                <ns3:CountryOfResidence>RU</ns3:CountryOfResidence>
                            </ns3:PassengerDocument>
                        </ns3:PassengerIDInfo>
                    </ns3:Passenger>
                    <ns3:Passenger ObjectKey="SH4">
                        <ns3:PTC Quantity="1">CHR</ns3:PTC>
                        <ns3:Age>
                            <ns3:BirthDate>2015-02-25</ns3:BirthDate>
                        </ns3:Age>
                        <ns3:Name>
                            <ns3:Surname>PROCULA</ns3:Surname>
                            <ns3:Given>CLAUDIA</ns3:Given>
                            <ns3:Title>MS</ns3:Title>
                            <ns3:Middle/>
                        </ns3:Name>
                        <ns3:Contacts>
                            <ns3:Contact>
                                <ns3:EmailContact>
                                    <ns3:Address>chuk@s7.ru</ns3:Address>
                                </ns3:EmailContact>
                                <ns3:PhoneContact>
                                    <ns3:Number>74951502070</ns3:Number>
                                </ns3:PhoneContact>
                            </ns3:Contact>
                        </ns3:Contacts>
                        <ns3:Gender>Female</ns3:Gender>
                        <ns3:PassengerIDInfo>
                            <ns3:PassengerDocument>
                                <ns3:Type>PP</ns3:Type>
                                <ns3:ID>211111111</ns3:ID>
                                <ns3:BirthCountry>RU</ns3:BirthCountry>
                                <ns3:DateOfExpiration>2121-10-10</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>Q7HMFM</ns3:ID>
                            <ns3:AirlineID>S7</ns3:AirlineID>
                        </ns3:BookingReference>
                    </ns3:BookingReferences>
                    <ns3:TimeLimits>
                        <ns3:PaymentTimeLimit DateTime="2022-06-04T14:06:00"/>
                    </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>DME</ns3:AirportCode>
                                            <ns3:Date>2022-09-11</ns3:Date>
                                            <ns3:Time>20:25</ns3:Time>
                                        </ns3:Departure>
                                        <ns3:Arrival>
                                            <ns3:AirportCode>HTA</ns3:AirportCode>
                                            <ns3:Date>2022-09-12</ns3:Date>
                                            <ns3:Time>08:40</ns3:Time>
                                        </ns3:Arrival>
                                        <ns3:MarketingCarrier>
                                            <ns3:AirlineID>S7</ns3:AirlineID>
                                            <ns3:FlightNumber>3045</ns3:FlightNumber>
                                        </ns3:MarketingCarrier>
                                        <ns3:OperatingCarrier>
                                            <ns3:AirlineID>S7</ns3:AirlineID>
                                            <ns3:FlightNumber>3045</ns3:FlightNumber>
                                        </ns3:OperatingCarrier>
                                        <ns3:CabinType>
                                            <ns3:Code>Y</ns3:Code>
                                        </ns3:CabinType>
                                        <ns3:ClassOfService>
                                            <ns3:Code>G</ns3:Code>
                                        </ns3:ClassOfService>
                                    </ns3:Flight>
                                </ns3:OriginDestination>
                            </ns3:FlightItem>
                            <ns3:Associations>
                                <ns3:Passengers>
                                    <ns3:PassengerReferences>SH2 SH2i SH4</ns3:PassengerReferences>
                                </ns3:Passengers>
                            </ns3:Associations>
                        </ns3:OrderItem>
                    </ns3:OrderItems>
                </ns3:Order>
            </ns3:Response>
        </ns3:OrderViewRS>
    </ns2:Body>
</ns2:Envelope>


Step 4: Request for informative pricing

S7 Agent executes a reprice operation with itinerary info of chosen solution

Note

(lightbulb) Use PTC types: NTL for adult passenger, CHR for child, INR INF for infant


Expand
titleRequest
Code Block
<Envelope xmlns="http://schemas.xmlsoap.org/soap/envelope/">
    <Header />
    <Body>
        <ItinReshopRQ<ItINFeshopRQ 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>DME</AirportCode>
                                                <Date>2022-09-11</Date>
                                                <Time>20:25</Time>
                                            </Departure>
                                            <Arrival>
                                                <AirportCode>HTA</AirportCode>
                                                <Date>2022-09-12</Date>
                                                <Time>08:40</Time>
                                            </Arrival>
                                            <MarketingCarrier>
                                                <AirlineID>S7</AirlineID>
                                                <FlightNumber>3045</FlightNumber>
                                            </MarketingCarrier>
                                            <OperatingCarrier>
                                                <AirlineID>S7</AirlineID>
                                                <FlightNumber>3045</FlightNumber>
                                            </OperatingCarrier>
                                        </Flight>
                                    </OriginDestination>
                                    <FareDetail>
                                        <FareComponent refs="FL1">
                                            <FareBasis>
                                                <FareBasisCode>
                                                    <Code>GSTOW</Code>
                                                </FareBasisCode>
                                                <RBD>G</RBD>
                                            </FareBasis>
                                        </FareComponent>
                                    </FareDetail>
                                </FlightItem>
                                <Associations>
                                    <Passengers>
                                        <PassengerReferences>SH2 SH2i SH4</PassengerReferences>
                                    </Passengers>
                                </Associations>
                            </OrderItem>
                        </OrderItems>
                        <Passengers>
                            <Passenger ObjectKey="SH2">
                                <PTC Quantity="1">NTL</PTC>
                                <Name>
                                    <Surname />
                                </Name>
                            </Passenger>
                            <Passenger ObjectKey="SH2i">
                                <PTC Quantity="1">INR<>INF</PTC>
                                <Name>
                                    <Surname />
                                </Name>
                            </Passenger>
                            <Passenger ObjectKey="SH4">
                                <PTC Quantity="1">CHR</PTC>
                                <Name>
                                    <Surname />
                                </Name>
                            </Passenger>
                        </Passengers>
                    </Actions>
                </Reshop>
            </Query>
        </ItinReshopRQ>ItINFeshopRQ>
    </Body>
</Envelope>



Expand
titleResponse
Code Block
<?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:ItinReshopRSItINFeshopRS Version="">
            <ns3:Document>
                <ns3:Name>1.0</ns3:Name>
            </ns3:Document>
            <ns3:Success/>
            <ns3:Response>
                <ns3:ItinReshopProcessingItINFeshopProcessing/>
                <ns3:Passengers>
                    <ns3:Passenger ObjectKey="SH2">
                        <ns3:PTC Quantity="1">NTL</ns3:PTC>
                        <ns3:Name>
                            <ns3:Surname>Anonymous</ns3:Surname>
                        </ns3:Name>
                    </ns3:Passenger>
                    <ns3:Passenger ObjectKey="SH4">
                        <ns3:PTC Quantity="1">CHR</ns3:PTC>
                        <ns3:Name>
                            <ns3:Surname>Anonymous</ns3:Surname>
                        </ns3:Name>
                    </ns3:Passenger>
                    <ns3:Passenger ObjectKey="SH2i">
                        <ns3:PTC Quantity="1">INR<>INF</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">16100</ns3:Total>
                                <ns3:Details>
                                    <ns3:Detail>
                                        <ns3:SubTotal Code="RUB">16100</ns3:SubTotal>
                                        <ns3:Application>fare</ns3:Application>
                                    </ns3:Detail>
                                </ns3:Details>
                                <ns3:Taxes>
                                    <ns3:Total Code="RUB">0</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">9200</ns3:Total>
                                                <ns3:Details>
                                                    <ns3:Detail>
                                                        <ns3:SubTotal Code="RUB">9200</ns3:SubTotal>
                                                        <ns3:Application>fare</ns3:Application>
                                                    </ns3:Detail>
                                                </ns3:Details>
                                                <ns3:Taxes>
                                                    <ns3:Total Code="RUB">0</ns3:Total>
                                                </ns3:Taxes>
                                                <ns3:Fees>
                                                    <ns3:Total Code="RUB">0</ns3:Total>
                                                </ns3:Fees>
                                            </ns3:DetailCurrencyPrice>
                                        </ns3:TotalAmount>
                                        <ns3:BaseAmount Code="RUB">9200</ns3:BaseAmount>
                                        <ns3:FareFiledIn>
                                            <ns3:BaseAmount Code="RUB">9200</ns3:BaseAmount>
                                        </ns3:FareFiledIn>
                                        <ns3:Surcharges>
                                            <ns3:Surcharge>
                                                <ns3:Total Code="RUB">0</ns3:Total>
                                            </ns3:Surcharge>
                                        </ns3:Surcharges>
                                        <ns3:Taxes>
                                            <ns3:Total Code="RUB">0</ns3:Total>
                                        </ns3:Taxes>
                                    </ns3:PriceDetail>
                                    <ns3:Associations>
                                        <ns3:AssociatedTraveler>
                                            <ns3:TravelerReferences>SH2</ns3:TravelerReferences>
                                        </ns3:AssociatedTraveler>
                                        <ns3:OfferDetailAssociation>
                                            <ns3:OfferTermReferences></ns3:OfferTermReferences>
                                        </ns3:OfferDetailAssociation>
                                    </ns3:Associations>
                                </ns3:RequestedDate>
                                <ns3:FareDetail>
                                    <ns3:FareComponent>
                                        <ns3:SegmentReference>SEG1</ns3:SegmentReference>
                                        <ns3:FareBasis>
                                            <ns3:FareBasisCode>
                                                <ns3:Code>GSTOW</ns3:Code>
                                            </ns3:FareBasisCode>
                                            <ns3:RBD>G</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:OfferPrice>
                                <ns3:RequestedDate>
                                    <ns3:PriceDetail>
                                        <ns3:TotalAmount>
                                            <ns3:DetailCurrencyPrice>
                                                <ns3:Total Code="RUB">6900</ns3:Total>
                                                <ns3:Details>
                                                    <ns3:Detail>
                                                        <ns3:SubTotal Code="RUB">6900</ns3:SubTotal>
                                                        <ns3:Application>fare</ns3:Application>
                                                    </ns3:Detail>
                                                </ns3:Details>
                                                <ns3:Taxes>
                                                    <ns3:Total Code="RUB">0</ns3:Total>
                                                </ns3:Taxes>
                                                <ns3:Fees>
                                                    <ns3:Total Code="RUB">0</ns3:Total>
                                                </ns3:Fees>
                                            </ns3:DetailCurrencyPrice>
                                        </ns3:TotalAmount>
                                        <ns3:BaseAmount Code="RUB">6900</ns3:BaseAmount>
                                        <ns3:FareFiledIn>
                                            <ns3:BaseAmount Code="RUB">6900</ns3:BaseAmount>
                                        </ns3:FareFiledIn>
                                        <ns3:Surcharges>
                                            <ns3:Surcharge>
                                                <ns3:Total Code="RUB">0</ns3:Total>
                                            </ns3:Surcharge>
                                        </ns3:Surcharges>
                                        <ns3:Taxes>
                                            <ns3:Total Code="RUB">0</ns3:Total>
                                        </ns3:Taxes>
                                    </ns3:PriceDetail>
                                    <ns3:Associations>
                                        <ns3:AssociatedTraveler>
                                            <ns3:TravelerReferences>SH4</ns3:TravelerReferences>
                                        </ns3:AssociatedTraveler>
                                        <ns3:OfferDetailAssociation>
                                            <ns3:OfferTermReferences></ns3:OfferTermReferences>
                                        </ns3:OfferDetailAssociation>
                                    </ns3:Associations>
                                </ns3:RequestedDate>
                                <ns3:FareDetail>
                                    <ns3:FareComponent>
                                        <ns3:SegmentReference>SEG1</ns3:SegmentReference>
                                        <ns3:FareBasis>
                                            <ns3:FareBasisCode>
                                                <ns3:Code>GSTOW</ns3:Code>
                                            </ns3:FareBasisCode>
                                            <ns3:RBD>G</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:OfferPrice>
                                <ns3:RequestedDate>
                                    <ns3:PriceDetail>
                                        <ns3:TotalAmount>
                                            <ns3:DetailCurrencyPrice>
                                                <ns3:Total Code="RUB">0</ns3:Total>
                                                <ns3:Details>
                                                    <ns3:Detail>
                                                        <ns3:SubTotal Code="RUB">0</ns3:SubTotal>
                                                        <ns3:Application>fare</ns3:Application>
                                                    </ns3:Detail>
                                                </ns3:Details>
                                                <ns3:Taxes>
                                                    <ns3:Total Code="RUB">0</ns3:Total>
                                                </ns3:Taxes>
                                                <ns3:Fees>
                                                    <ns3:Total Code="RUB">0</ns3:Total>
                                                </ns3:Fees>
                                            </ns3:DetailCurrencyPrice>
                                        </ns3:TotalAmount>
                                        <ns3:BaseAmount Code="RUB">0</ns3:BaseAmount>
                                        <ns3:FareFiledIn>
                                            <ns3:BaseAmount Code="RUB">0</ns3:BaseAmount>
                                        </ns3:FareFiledIn>
                                        <ns3:Surcharges>
                                            <ns3:Surcharge>
                                                <ns3:Total Code="RUB">0</ns3:Total>
                                            </ns3:Surcharge>
                                        </ns3:Surcharges>
                                        <ns3:Taxes>
                                            <ns3:Total Code="RUB">0</ns3:Total>
                                        </ns3:Taxes>
                                    </ns3:PriceDetail>
                                    <ns3:Associations>
                                        <ns3:AssociatedTraveler>
                                            <ns3:TravelerReferences>SH2i</ns3:TravelerReferences>
                                        </ns3:AssociatedTraveler>
                                        <ns3:OfferDetailAssociation>
                                            <ns3:OfferTermReferences></ns3:OfferTermReferences>
                                        </ns3:OfferDetailAssociation>
                                    </ns3:Associations>
                                </ns3:RequestedDate>
                                <ns3:FareDetail>
                                    <ns3:FareComponent>
                                        <ns3:SegmentReference>SEG1</ns3:SegmentReference>
                                        <ns3:FareBasis>
                                            <ns3:FareBasisCode>
                                                <ns3:Code>GSTOW</ns3:Code>
                                            </ns3:FareBasisCode>
                                            <ns3:RBD>G</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>DME</ns3:AirportCode>
                                <ns3:Date>2022-09-11</ns3:Date>
                                <ns3:Time>20:25</ns3:Time>
                            </ns3:Departure>
                            <ns3:Arrival>
                                <ns3:AirportCode>HTA</ns3:AirportCode>
                                <ns3:Date>2022-09-12</ns3:Date>
                                <ns3:Time>08:40</ns3:Time>
                            </ns3:Arrival>
                            <ns3:MarketingCarrier>
                                <ns3:AirlineID>S7</ns3:AirlineID>
                                <ns3:FlightNumber>3045</ns3:FlightNumber>
                            </ns3:MarketingCarrier>
                            <ns3:OperatingCarrier>
                                <ns3:AirlineID>S7</ns3:AirlineID>
                                <ns3:FlightNumber>3045</ns3:FlightNumber>
                            </ns3:OperatingCarrier>
                        </ns3:FlightSegment>
                    </ns3:FlightSegmentList>
                    <ns3:OriginDestinationList>
                        <ns3:OriginDestination OriginDestinationKey="OD1">
                            <ns3:DepartureCode>DME</ns3:DepartureCode>
                            <ns3:ArrivalCode>HTA</ns3:ArrivalCode>
                            <ns3:FlightReferences>SEG1</ns3:FlightReferences>
                        </ns3:OriginDestination>
                    </ns3:OriginDestinationList>
                    <ns3:TermsList ListKey="TL1"/>
                </ns3:DataList>
            </ns3:Response>
        </ns3:ItinReshopRS>ItINFeshopRS>
    </ns2:Body>
</ns2:Envelope>


Step 5: Request for reservation pricing

S7 Agent executes a reprice operation with itinerary info of chosen solution

Note

(lightbulb) Use PTC types: NTL for adult passenger, CHR for child, INR INF for infant


Expand
titleRequest
Code Block
<Envelope xmlns="http://schemas.xmlsoap.org/soap/envelope/">
    <Header />
    <Body>
        <ItinReshopRQ<ItINFeshopRQ 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>{{PNR}}</ID>
                                <AirlineID>S7</AirlineID>
                            </BookingReference>
                        </BookingReferences>
                        <OrderItems>
                            <OrderItem>
                                <FlightItem>
                                    <OriginDestination>
                                        <Flight>
                                            <SegmentKey>FL1</SegmentKey>
                                            <Departure>
                                                <AirportCode>DME</AirportCode>
                                                <Date>2022-09-11</Date>
                                                <Time>20:25</Time>
                                            </Departure>
                                            <Arrival>
                                                <AirportCode>HTA</AirportCode>
                                                <Date>2022-09-12</Date>
                                                <Time>08:40</Time>
                                            </Arrival>
                                            <MarketingCarrier>
                                                <AirlineID>S7</AirlineID>
                                                <FlightNumber>3045</FlightNumber>
                                            </MarketingCarrier>
                                            <OperatingCarrier>
                                                <AirlineID>S7</AirlineID>
                                                <FlightNumber>3045</FlightNumber>
                                            </OperatingCarrier>
                                        </Flight>
                                    </OriginDestination>
                                    <FareDetail>
                                        <FareComponent refs="FL1">
                                            <FareBasis>
                                                <FareBasisCode>
                                                    <Code>GSTOW</Code>
                                                </FareBasisCode>
                                                <RBD>G</RBD>
                                            </FareBasis>
                                        </FareComponent>
                                    </FareDetail>
                                </FlightItem>
                                <Associations>
                                    <Passengers>
                                        <PassengerReferences>SH2 SH2i SH4</PassengerReferences>
                                    </Passengers>
                                </Associations>
                            </OrderItem>
                        </OrderItems>
                        <Passengers>
                            <Passenger ObjectKey="SH2">
                                <PTC Quantity="1">NTL</PTC>
                                <Name>
                                    <Surname />
                                </Name>
                            </Passenger>
                            <Passenger ObjectKey="SH2i">
                                <PTC Quantity="1">INR<>INF</PTC>
                                <Name>
                                    <Surname />
                                </Name>
                            </Passenger>
                            <Passenger ObjectKey="SH4">
                                <PTC Quantity="1">CHR</PTC>
                                <Name>
                                    <Surname />
                                </Name>
                            </Passenger>
                        </Passengers>
                    </Actions>
                </Reshop>
            </Query>
        </ItinReshopRQ>ItINFeshopRQ>
    </Body>
</Envelope>



Expand
titleResponse
Code Block
<?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:ItinReshopRSItINFeshopRS Version="">
            <ns3:Document>
                <ns3:Name>1.0</ns3:Name>
            </ns3:Document>
            <ns3:Success/>
            <ns3:Response>
                <ns3:ItinReshopProcessingItINFeshopProcessing/>
                <ns3:Passengers>
                    <ns3:Passenger ObjectKey="SH2">
                        <ns3:PTC Quantity="1">NTL</ns3:PTC>
                        <ns3:Name>
                            <ns3:Surname>Anonymous</ns3:Surname>
                        </ns3:Name>
                    </ns3:Passenger>
                    <ns3:Passenger ObjectKey="SH4">
                        <ns3:PTC Quantity="1">CHR</ns3:PTC>
                        <ns3:Name>
                            <ns3:Surname>Anonymous</ns3:Surname>
                        </ns3:Name>
                    </ns3:Passenger>
                    <ns3:Passenger ObjectKey="SH2i">
                        <ns3:PTC Quantity="1">INR<>INF</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>Q7HMFM</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">16100</ns3:Total>
                                <ns3:Details>
                                    <ns3:Detail>
                                        <ns3:SubTotal Code="RUB">16100</ns3:SubTotal>
                                        <ns3:Application>fare</ns3:Application>
                                    </ns3:Detail>
                                </ns3:Details>
                                <ns3:Taxes>
                                    <ns3:Total Code="RUB">0</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">9200</ns3:Total>
                                                <ns3:Details>
                                                    <ns3:Detail>
                                                        <ns3:SubTotal Code="RUB">9200</ns3:SubTotal>
                                                        <ns3:Application>fare</ns3:Application>
                                                    </ns3:Detail>
                                                </ns3:Details>
                                                <ns3:Taxes>
                                                    <ns3:Total Code="RUB">0</ns3:Total>
                                                </ns3:Taxes>
                                                <ns3:Fees>
                                                    <ns3:Total Code="RUB">0</ns3:Total>
                                                </ns3:Fees>
                                            </ns3:DetailCurrencyPrice>
                                        </ns3:TotalAmount>
                                        <ns3:BaseAmount Code="RUB">9200</ns3:BaseAmount>
                                        <ns3:FareFiledIn>
                                            <ns3:BaseAmount Code="RUB">9200</ns3:BaseAmount>
                                        </ns3:FareFiledIn>
                                        <ns3:Surcharges>
                                            <ns3:Surcharge>
                                                <ns3:Total Code="RUB">0</ns3:Total>
                                            </ns3:Surcharge>
                                        </ns3:Surcharges>
                                        <ns3:Taxes>
                                            <ns3:Total Code="RUB">0</ns3:Total>
                                        </ns3:Taxes>
                                    </ns3:PriceDetail>
                                    <ns3:Associations>
                                        <ns3:AssociatedTraveler>
                                            <ns3:TravelerReferences>SH2</ns3:TravelerReferences>
                                        </ns3:AssociatedTraveler>
                                        <ns3:OfferDetailAssociation>
                                            <ns3:OfferTermReferences></ns3:OfferTermReferences>
                                        </ns3:OfferDetailAssociation>
                                    </ns3:Associations>
                                </ns3:RequestedDate>
                                <ns3:FareDetail>
                                    <ns3:FareComponent>
                                        <ns3:SegmentReference>SEG1</ns3:SegmentReference>
                                        <ns3:FareBasis>
                                            <ns3:FareBasisCode>
                                                <ns3:Code>GSTOW</ns3:Code>
                                            </ns3:FareBasisCode>
                                            <ns3:RBD>G</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:OfferPrice>
                                <ns3:RequestedDate>
                                    <ns3:PriceDetail>
                                        <ns3:TotalAmount>
                                            <ns3:DetailCurrencyPrice>
                                                <ns3:Total Code="RUB">6900</ns3:Total>
                                                <ns3:Details>
                                                    <ns3:Detail>
                                                        <ns3:SubTotal Code="RUB">6900</ns3:SubTotal>
                                                        <ns3:Application>fare</ns3:Application>
                                                    </ns3:Detail>
                                                </ns3:Details>
                                                <ns3:Taxes>
                                                    <ns3:Total Code="RUB">0</ns3:Total>
                                                </ns3:Taxes>
                                                <ns3:Fees>
                                                    <ns3:Total Code="RUB">0</ns3:Total>
                                                </ns3:Fees>
                                            </ns3:DetailCurrencyPrice>
                                        </ns3:TotalAmount>
                                        <ns3:BaseAmount Code="RUB">6900</ns3:BaseAmount>
                                        <ns3:FareFiledIn>
                                            <ns3:BaseAmount Code="RUB">6900</ns3:BaseAmount>
                                        </ns3:FareFiledIn>
                                        <ns3:Surcharges>
                                            <ns3:Surcharge>
                                                <ns3:Total Code="RUB">0</ns3:Total>
                                            </ns3:Surcharge>
                                        </ns3:Surcharges>
                                        <ns3:Taxes>
                                            <ns3:Total Code="RUB">0</ns3:Total>
                                        </ns3:Taxes>
                                    </ns3:PriceDetail>
                                    <ns3:Associations>
                                        <ns3:AssociatedTraveler>
                                            <ns3:TravelerReferences>SH4</ns3:TravelerReferences>
                                        </ns3:AssociatedTraveler>
                                        <ns3:OfferDetailAssociation>
                                            <ns3:OfferTermReferences></ns3:OfferTermReferences>
                                        </ns3:OfferDetailAssociation>
                                    </ns3:Associations>
                                </ns3:RequestedDate>
                                <ns3:FareDetail>
                                    <ns3:FareComponent>
                                        <ns3:SegmentReference>SEG1</ns3:SegmentReference>
                                        <ns3:FareBasis>
                                            <ns3:FareBasisCode>
                                                <ns3:Code>GSTOW</ns3:Code>
                                            </ns3:FareBasisCode>
                                            <ns3:RBD>G</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:OfferPrice>
                                <ns3:RequestedDate>
                                    <ns3:PriceDetail>
                                        <ns3:TotalAmount>
                                            <ns3:DetailCurrencyPrice>
                                                <ns3:Total Code="RUB">0</ns3:Total>
                                                <ns3:Details>
                                                    <ns3:Detail>
                                                        <ns3:SubTotal Code="RUB">0</ns3:SubTotal>
                                                        <ns3:Application>fare</ns3:Application>
                                                    </ns3:Detail>
                                                </ns3:Details>
                                                <ns3:Taxes>
                                                    <ns3:Total Code="RUB">0</ns3:Total>
                                                </ns3:Taxes>
                                                <ns3:Fees>
                                                    <ns3:Total Code="RUB">0</ns3:Total>
                                                </ns3:Fees>
                                            </ns3:DetailCurrencyPrice>
                                        </ns3:TotalAmount>
                                        <ns3:BaseAmount Code="RUB">0</ns3:BaseAmount>
                                        <ns3:FareFiledIn>
                                            <ns3:BaseAmount Code="RUB">0</ns3:BaseAmount>
                                        </ns3:FareFiledIn>
                                        <ns3:Surcharges>
                                            <ns3:Surcharge>
                                                <ns3:Total Code="RUB">0</ns3:Total>
                                            </ns3:Surcharge>
                                        </ns3:Surcharges>
                                        <ns3:Taxes>
                                            <ns3:Total Code="RUB">0</ns3:Total>
                                        </ns3:Taxes>
                                    </ns3:PriceDetail>
                                    <ns3:Associations>
                                        <ns3:AssociatedTraveler>
                                            <ns3:TravelerReferences>SH2i</ns3:TravelerReferences>
                                        </ns3:AssociatedTraveler>
                                        <ns3:OfferDetailAssociation>
                                            <ns3:OfferTermReferences></ns3:OfferTermReferences>
                                        </ns3:OfferDetailAssociation>
                                    </ns3:Associations>
                                </ns3:RequestedDate>
                                <ns3:FareDetail>
                                    <ns3:FareComponent>
                                        <ns3:SegmentReference>SEG1</ns3:SegmentReference>
                                        <ns3:FareBasis>
                                            <ns3:FareBasisCode>
                                                <ns3:Code>GSTOW</ns3:Code>
                                            </ns3:FareBasisCode>
                                            <ns3:RBD>G</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>DME</ns3:AirportCode>
                                <ns3:Date>2022-09-11</ns3:Date>
                                <ns3:Time>20:25</ns3:Time>
                            </ns3:Departure>
                            <ns3:Arrival>
                                <ns3:AirportCode>HTA</ns3:AirportCode>
                                <ns3:Date>2022-09-12</ns3:Date>
                                <ns3:Time>08:40</ns3:Time>
                            </ns3:Arrival>
                            <ns3:MarketingCarrier>
                                <ns3:AirlineID>S7</ns3:AirlineID>
                                <ns3:FlightNumber>3045</ns3:FlightNumber>
                            </ns3:MarketingCarrier>
                            <ns3:OperatingCarrier>
                                <ns3:AirlineID>S7</ns3:AirlineID>
                                <ns3:FlightNumber>3045</ns3:FlightNumber>
                            </ns3:OperatingCarrier>
                        </ns3:FlightSegment>
                    </ns3:FlightSegmentList>
                    <ns3:OriginDestinationList>
                        <ns3:OriginDestination OriginDestinationKey="OD1">
                            <ns3:DepartureCode>DME</ns3:DepartureCode>
                            <ns3:ArrivalCode>HTA</ns3:ArrivalCode>
                            <ns3:FlightReferences>SEG1</ns3:FlightReferences>
                        </ns3:OriginDestination>
                    </ns3:OriginDestinationList>
                    <ns3:TermsList ListKey="TL1"/>
                </ns3:DataList>
            </ns3:Response>
        </ns3:ItinReshopRS>ItINFeshopRS>
    </ns2:Body>
</ns2:Envelope>


Response

Step 6: Issue tickets for all passenger

S7 Agent executes a demandTickets operation with reservation reference and pricing details


Expand
titleRequest
Code Block
<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>
                    </TravelerInfo>
                    <BookingReference>
                        <ID>{{PNR}}</ID>
                        <AirlineID>S7</AirlineID>
                    </BookingReference>
                    <Payments>
                        <Payment ObjectKey="ETK">
                            <Type>
                                <Code>MS</Code>
                            </Type>
                            <Other>
                                <Remarks>
                                    <Remark>*A*TEXT</Remark>
                                </Remarks>
                            </Other>
                        </Payment>
                    </Payments>
                </TicketDocInfo>
            </Query>
        </AirDocIssueRQ>
    </Body>
</Envelope>



Expand
titleResponse
Code Block
<?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>NTL</ns3:PTC>
                        </ns3:Traveler>
                        <ns3:IssuingAirlineInfo>
                            <ns3:AirlineName>S7</ns3:AirlineName>
                        </ns3:IssuingAirlineInfo>
                        <ns3:BookingReferences>
                            <ns3:BookingReference>
                                <ns3:ID>Q7HMFM</ns3:ID>
                                <ns3:AirlineID>S7</ns3:AirlineID>
                            </ns3:BookingReference>
                        </ns3:BookingReferences>
                        <ns3:Payments>
                            <ns3:Payment>
                                <ns3:Method/>
                                <ns3:Amount Code="RUB">16100</ns3:Amount>
                            </ns3:Payment>
                        </ns3:Payments>
                        <ns3:OriginDestination>
                            <ns3:Origin>DME</ns3:Origin>
                            <ns3:Destination>HTA</ns3:Destination>
                        </ns3:OriginDestination>
                        <ns3:FareInfo>
                            <ns3:BaseFare>
                                <ns3:Amount Code="RUB">9200</ns3:Amount>
                            </ns3:BaseFare>
                            <ns3:Total>
                                <ns3:Amount Code="RUB">9200</ns3:Amount>
                            </ns3:Total>
                            <ns3:UnstructuredFareCalcInfo>
                                <ns3:Info>MOW S7 HTA9200.00RUB9200.00END</ns3:Info>
                            </ns3:UnstructuredFareCalcInfo>
                        </ns3:FareInfo>
                        <ns3:TicketDocument>
                            <ns3:TicketDocNbr>4212436882623</ns3:TicketDocNbr>
                            <ns3:Type>
                                <ns3:Code>702</ns3:Code>
                            </ns3:Type>
                            <ns3:NumberofBooklets>1</ns3:NumberofBooklets>
                            <ns3:DateOfIssue>2022-06-01</ns3:DateOfIssue>
                            <ns3:CouponInfo>
                                <ns3:CouponNumber>1</ns3:CouponNumber>
                                <ns3:FareBasisCode>
                                    <ns3:Code>GSTOW</ns3:Code>
                                </ns3:FareBasisCode>
                                <ns3:CouponValid>
                                    <ns3:EffectiveDatePeriod>
                                        <ns3:Expiration>2022-12-31</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>2022-09-11</ns3:Date>
                                        <ns3:Time>20:25</ns3:Time>
                                    </ns3:Departure>
                                    <ns3:Arrival>
                                        <ns3:AirportCode>HTA</ns3:AirportCode>
                                        <ns3:Date>2022-09-12</ns3:Date>
                                        <ns3:Time>08:40</ns3:Time>
                                    </ns3:Arrival>
                                    <ns3:OperatingCarrier>
                                        <ns3:ResBookDesigCode>G</ns3:ResBookDesigCode>
                                    </ns3:OperatingCarrier>
                                    <ns3:MarketingCarrier>
                                        <ns3:AirlineID>S7</ns3:AirlineID>
                                        <ns3:FlightNumber>3045</ns3:FlightNumber>
                                    </ns3:MarketingCarrier>
                                    <ns3:TicketedBaggageAllowance>
                                        <ns3:AllowableBag Type="PC" Number="1"/>
                                    </ns3:TicketedBaggageAllowance>
                                </ns3:SoldAirlineInfo>
                            </ns3:CouponInfo>
                        </ns3:TicketDocument>
                        <ns3:Commission>
                            <ns3:Amount>0</ns3:Amount>
                            <ns3:Remarks>
                                <ns3:Remark>S7 ONLY/REF/CHNG/RESTR/GST</ns3:Remark>
                                <ns3:Remark>2022-06-01T14:15</ns3:Remark>
                            </ns3:Remarks>
                        </ns3:Commission>
                        <ns3:PassengerSpecificData>111111111</ns3:PassengerSpecificData>
                    </ns3:TicketDocInfo>
                    <ns3:TicketDocInfo>
                        <ns3:Traveler>
                            <ns3:Surname>PROCULA</ns3:Surname>
                            <ns3:Given>CLAUDIA</ns3:Given>
                            <ns3:PTC>CHR</ns3:PTC>
                        </ns3:Traveler>
                        <ns3:IssuingAirlineInfo>
                            <ns3:AirlineName>S7</ns3:AirlineName>
                        </ns3:IssuingAirlineInfo>
                        <ns3:BookingReferences>
                            <ns3:BookingReference>
                                <ns3:ID>Q7HMFM</ns3:ID>
                                <ns3:AirlineID>S7</ns3:AirlineID>
                            </ns3:BookingReference>
                        </ns3:BookingReferences>
                        <ns3:Payments>
                            <ns3:Payment>
                                <ns3:Method/>
                                <ns3:Amount Code="RUB">16100</ns3:Amount>
                            </ns3:Payment>
                        </ns3:Payments>
                        <ns3:OriginDestination>
                            <ns3:Origin>DME</ns3:Origin>
                            <ns3:Destination>HTA</ns3:Destination>
                        </ns3:OriginDestination>
                        <ns3:FareInfo>
                            <ns3:BaseFare>
                                <ns3:Amount Code="RUB">6900</ns3:Amount>
                            </ns3:BaseFare>
                            <ns3:Total>
                                <ns3:Amount Code="RUB">6900</ns3:Amount>
                            </ns3:Total>
                            <ns3:UnstructuredFareCalcInfo>
                                <ns3:Info>MOW S7 HTA6900.00RUB6900.00END</ns3:Info>
                            </ns3:UnstructuredFareCalcInfo>
                        </ns3:FareInfo>
                        <ns3:TicketDocument>
                            <ns3:TicketDocNbr>4212436882624</ns3:TicketDocNbr>
                            <ns3:Type>
                                <ns3:Code>702</ns3:Code>
                            </ns3:Type>
                            <ns3:NumberofBooklets>1</ns3:NumberofBooklets>
                            <ns3:DateOfIssue>2022-06-01</ns3:DateOfIssue>
                            <ns3:CouponInfo>
                                <ns3:CouponNumber>1</ns3:CouponNumber>
                                <ns3:FareBasisCode>
                                    <ns3:Code>GSTOW</ns3:Code>
                                </ns3:FareBasisCode>
                                <ns3:CouponValid>
                                    <ns3:EffectiveDatePeriod>
                                        <ns3:Expiration>2022-12-31</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>2022-09-11</ns3:Date>
                                        <ns3:Time>20:25</ns3:Time>
                                    </ns3:Departure>
                                    <ns3:Arrival>
                                        <ns3:AirportCode>HTA</ns3:AirportCode>
                                        <ns3:Date>2022-09-12</ns3:Date>
                                        <ns3:Time>08:40</ns3:Time>
                                    </ns3:Arrival>
                                    <ns3:OperatingCarrier>
                                        <ns3:ResBookDesigCode>G</ns3:ResBookDesigCode>
                                    </ns3:OperatingCarrier>
                                    <ns3:MarketingCarrier>
                                        <ns3:AirlineID>S7</ns3:AirlineID>
                                        <ns3:FlightNumber>3045</ns3:FlightNumber>
                                    </ns3:MarketingCarrier>
                                    <ns3:TicketedBaggageAllowance>
                                        <ns3:AllowableBag Type="PC" Number="1"/>
                                    </ns3:TicketedBaggageAllowance>
                                </ns3:SoldAirlineInfo>
                            </ns3:CouponInfo>
                        </ns3:TicketDocument>
                        <ns3:Commission>
                            <ns3:Amount>0</ns3:Amount>
                            <ns3:Remarks>
                                <ns3:Remark>S7 ONLY/REF/CHNG/RESTR/GST</ns3:Remark>
                                <ns3:Remark>2022-06-01T14:15</ns3:Remark>
                            </ns3:Remarks>
                        </ns3:Commission>
                        <ns3:PassengerSpecificData>211111111</ns3:PassengerSpecificData>
                    </ns3:TicketDocInfo>
                    <ns3:TicketDocInfo>
                        <ns3:Traveler>
                            <ns3:Surname>PILATUS</ns3:Surname>
                            <ns3:Given>SEVDA</ns3:Given>
                            <ns3:PTC>INR<PTC>INF</ns3:PTC>
                        </ns3:Traveler>
                        <ns3:IssuingAirlineInfo>
                            <ns3:AirlineName>S7</ns3:AirlineName>
                        </ns3:IssuingAirlineInfo>
                        <ns3:BookingReferences>
                            <ns3:BookingReference>
                                <ns3:ID>Q7HMFM</ns3:ID>
                                <ns3:AirlineID>S7</ns3:AirlineID>
                            </ns3:BookingReference>
                        </ns3:BookingReferences>
                        <ns3:Payments>
                            <ns3:Payment>
                                <ns3:Method/>
                                <ns3:Amount Code="RUB">16100</ns3:Amount>
                            </ns3:Payment>
                        </ns3:Payments>
                        <ns3:OriginDestination>
                            <ns3:Origin>DME</ns3:Origin>
                            <ns3:Destination>HTA</ns3:Destination>
                        </ns3:OriginDestination>
                        <ns3:FareInfo>
                            <ns3:BaseFare>
                                <ns3:Amount Code="RUB">0.00</ns3:Amount>
                            </ns3:BaseFare>
                            <ns3:Total>
                                <ns3:Amount Code="RUB">0.00</ns3:Amount>
                            </ns3:Total>
                            <ns3:UnstructuredFareCalcInfo>
                                <ns3:Info>MOW S7 HTA0.00RUB0.00END</ns3:Info>
                            </ns3:UnstructuredFareCalcInfo>
                        </ns3:FareInfo>
                        <ns3:TicketDocument>
                            <ns3:TicketDocNbr>4212436882625</ns3:TicketDocNbr>
                            <ns3:Type>
                                <ns3:Code>702</ns3:Code>
                            </ns3:Type>
                            <ns3:NumberofBooklets>1</ns3:NumberofBooklets>
                            <ns3:DateOfIssue>2022-06-01</ns3:DateOfIssue>
                            <ns3:CouponInfo>
                                <ns3:CouponNumber>1</ns3:CouponNumber>
                                <ns3:FareBasisCode>
                                    <ns3:Code>GSTOW</ns3:Code>
                                </ns3:FareBasisCode>
                                <ns3:CouponValid>
                                    <ns3:EffectiveDatePeriod>
                                        <ns3:Expiration>2022-12-31</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>2022-09-11</ns3:Date>
                                        <ns3:Time>20:25</ns3:Time>
                                    </ns3:Departure>
                                    <ns3:Arrival>
                                        <ns3:AirportCode>HTA</ns3:AirportCode>
                                        <ns3:Date>2022-09-12</ns3:Date>
                                        <ns3:Time>08:40</ns3:Time>
                                    </ns3:Arrival>
                                    <ns3:OperatingCarrier>
                                        <ns3:ResBookDesigCode>G</ns3:ResBookDesigCode>
                                    </ns3:OperatingCarrier>
                                    <ns3:MarketingCarrier>
                                        <ns3:AirlineID>S7</ns3:AirlineID>
                                        <ns3:FlightNumber>3045</ns3:FlightNumber>
                                    </ns3:MarketingCarrier>
                                    <ns3:TicketedBaggageAllowance>
                                        <ns3:AllowableBag Type="PC" Number="1"/>
                                    </ns3:TicketedBaggageAllowance>
                                </ns3:SoldAirlineInfo>
                            </ns3:CouponInfo>
                        </ns3:TicketDocument>
                        <ns3:Commission>
                            <ns3:Amount>0</ns3:Amount>
                            <ns3:Remarks>
                                <ns3:Remark>S7 ONLY/REF/CHNG/RESTR/GST</ns3:Remark>
                                <ns3:Remark>2022-06-01T14:15</ns3:Remark>
                            </ns3:Remarks>
                        </ns3:Commission>
                        <ns3:PassengerSpecificData>311111111</ns3:PassengerSpecificData>
                    </ns3:TicketDocInfo>
                </ns3:TicketDocInfos>
            </ns3:Response>
        </ns3:AirDocDisplayRS>
    </ns2:Body>
</ns2:Envelope>