Reputation: 187
I am using sabre GetReservation SOAP call its working fine but now I added PRICE_QUOTE subject area which contains response of PriceQuoteServices but the wsdl provided by sabre for GetReservation does not contains xsd(schemas) for PriceQuoteServices. The issue is when I am going to parse the xml response of GetReservation using python-zeep it ignores the PRICE_QUOTE object since it was not defined in the schemas. Is their any work around for this instead of geting raw_response from zeep and then converting to json?
Upvotes: 1
Views: 457
Reputation: 131
This is because there are basically two transactions being merged in the response. The Price_Quote subject area tells the system to also return the PriceQuoteServicesRQ response as part of the XML.
The documentation for PriceQuoteServicesRQ is on Sabre Dev Studio - the transaction is actually called 'Manage Price Quote Details'
https://developer.sabre.com/docs/soap_apis/air/fulfill/manage_price_quote_details/resources
There is a WSDL and Docs there for you to use
Hope this helps
Upvotes: 1