回程航班选择品牌票价

问题描述 投票:0回答:1

我们收到返回响应并获得品牌票价,但它是合并的(由 Sabre 或托管航空公司定义)。我们为出境和入境提供品牌票价选择。

任何从事品牌票价返程票价选择工作的人都可以吗? 我也可以分享回复

我尝试了 BFM Req,如下所示:

{
  "OTA_AirLowFareSearchRQ": {
    "ResponseType": "OTA",
    "ResponseVersion": "4.3.0",
    "Version": "4.3.0",
    "TravelPreferences": {
      "ValidInterlineTicket": true,
      "VendorPref": [],
      "CabinPref": [
        {
          "Cabin": "Economy",
          "PreferLevel": "Preferred"
        }
      ],
      "TPA_Extensions": {
        "TripType": {
          "Value": "Return"
        },
        "CodeShareIndicator": {
          "ExcludeCodeshare": false,
          "KeepOnlines": false
        }
      }
    },
    "TPA_Extensions": {
      "IntelliSellTransaction": {
        "RequestType": {
          "Name": "50ITINS"
        }
      }
    },
    "POS": {
      "Source": [
        {
          "PseudoCityCode": "XXXX",
          "RequestorID": {
            "Type": "IATA",
            "ID": "99000",
            "CompanyName": {
              "Code": "TN"
            }
          }
        }
      ]
    },
    "OriginDestinationInformation": [
      {
        "RPH": "1",
        "DepartureDateTime": "2024-01-22T00:00:01",
        "OriginLocation": {
          "LocationCode": "ISB"
        },
        "DestinationLocation": {
          "LocationCode": "DXB"
        }
      },
      {
        "RPH": "1",
        "DepartureDateTime": "2024-01-30T00:00:01",
        "OriginLocation": {
          "LocationCode": "DXB"
        },
        "DestinationLocation": {
          "LocationCode": "ISB"
        }
      }
    ],
    "TravelerInfoSummary": {
      "SeatsRequested": [
        1
      ],
      "AirTravelerAvail": [
        {
          "PassengerTypeQuantity": [
            {
              "Code": "ADT",
              "Quantity": 1,
              "TPA_Extensions": {
                "VoluntaryChanges": {
                  "Match": "Info"
                }
              }
            }
          ]
        }
      ],
      "PriceRequestInformation": {
        "TPA_Extensions": {
          "Priority": {
            "Price": {
              "Priority": 1
            },
            "DirectFlights": {
              "Priority": 2
            },
            "Time": {
              "Priority": 3
            },
            "Vendor": {
              "Priority": 4
            }
          },
          "BrandedFareIndicators": {
            "MultipleBrandedFares": true,
            "SingleBrandedFare": true,
            "ReturnBrandAncillaries": true,
            "UpsellLimit": 3
          }
        }
      }
    }
  }
}
response
1个回答
0
投票

我们正在开发带有品牌票价的 Sabre Rest API。正如我们在响应中看到的,我们得到了品牌票价与航班的组合,这意味着响应带有出境品牌选项 + 入境票价选项,我们确实找到了如何选择我们想要的票价选项。 有没有可能分享您的直接电子邮件/联系信息,以便我可以分享完整的日志?

© www.soinside.com 2019 - 2024. All rights reserved.