0

I am trying to search flights using Sabre's Bargain Finder Max v4.3.0 Rest API. I am receiving response successfully but I can't find any Penalties Information for any flight sequence in response data. I need any penalty information(refund/cancellation etc) available with flight sequence returned in api response.

Here is my request data:

{
            "OTA_AirLowFareSearchRQ": {
              "ResponseType": "OTA",
              "ResponseVersion": "4.3.0",
              "SeparateMessages": true,
              "TruncateMessages": false,
              "Target": "Test",
              "Version": "4.1.0",
              "DirectFlightsOnly":true,
              "POS": {
                "Source": [
                  {
                    "PseudoCityCode": "F9CE",
                    "RequestorID": {
                      "Type": "1",
                      "ID": "1",
                      "CompanyName": {
                        "Code": "TN"
                      }
                    }
                  }
                ]
              },
              "TravelPreferences": {
                "MaxStopsQuantity": 4, 
                "TPA_Extensions": {
                  "TripType":{
                    "Value":"OneWay"
                  },
                  "XOFares":{
                    "Value":true
                  }
                },
                "CabinPref": [{
                  "Cabin": "Y",
                  "PreferLevel": "Preferred"
                }]
              },
              "TPA_Extensions": {
                "IntelliSellTransaction": {
                  "RequestType": {
                    "Name": "100ITINS"
                  }
                }
              },
              "OriginDestinationInformation": [
                {
                  "RPH": "1",
                  "DepartureDateTime": "2023-04-25T00:00:00",
                  "OriginLocation": {
                    "LocationCode": "JFK"
                  },
                  "DestinationLocation": {
                    "LocationCode": "LAS"
                  },
                  "TPA_Extensions":{
                    "SegmentType":{
                      "Code":"O"
                    },
                    "TotalTravelTime":{
                      "Max":2000
                    }
                  }
                }],
              "TravelerInfoSummary": {
                "PriceRequestInformation":{
                  "CurrencyCode":"USD"
                },
                "SeatsRequested": [1],
                "AirTravelerAvail": [
                  {
                    "PassengerTypeQuantity": [
                      {
                        "Code": "ADT",
                        "Quantity": 1
                      }]
                  }
                ]
              }
            }
          }

0 Answers0