Dear Agents,
We should inform you about new ServiceFilter on the Search operation. This ServiceFilter required to receive fare families which include free baggage
More information in our documentation
searchFlightsJourney operation
...
searchFlightsJourney operation | References
Уважаемые Агенты,
Информируем вас о том, что доступен новый фильтр (ServiceFilter) на поисковом методе. Этот фильтр используется для получения в ответе семейств тарифов, которые включают в себя провоз бесплатного багажа.
Подробная информация в нашей документации
searchFlightsJourney operation
...
searchFlightsJourney operation | References
Code Block |
---|
|
<ServiceFilter>
<GroupCode>Baggage</GroupCode>
<SubGroupCode>Include</SubGroupCode>
</ServiceFilter> |
Пример запроса с использованием фильтра
Expand |
---|
Code Block |
---|
<Envelope xmlns="http://schemas.xmlsoap.org/soap/envelope/">
<Header />
<Body>
<AirShoppingRQ xmlns="http://www.iata.org/IATA/EDIST" Version="1.0">
<Document />
<Party>
<Sender>
<AgentUserSender>
<PseudoCity>S7AGN8224</PseudoCity>
<AgentUserID>test</AgentUserID>
</AgentUserSender>
</Sender>
</Party>
<Parameters>
<ServiceFilters>
<ServiceFilter>
<GroupCode>Baggage</GroupCode>
<SubGroupCode>Include</SubGroupCode>
</ServiceFilter>
</ServiceFilters>
</Parameters>
<Travelers>
<Traveler>
<AnonymousTraveler>
<PTC Quantity="1">ADT</PTC>
</AnonymousTraveler>
</Traveler>
</Travelers>
<CoreQuery>
<OriginDestinations>
<OriginDestination>
<Departure>
<AirportCode>DME</AirportCode>
<Date>2023-09-01</Date>
</Departure>
<Arrival>
<AirportCode>OVB</AirportCode>
</Arrival>
</OriginDestination>
</OriginDestinations>
</CoreQuery>
</AirShoppingRQ>
</Body>
</Envelope> |
|
...