BigCommerce Customer Groups API - 如何判断类别类型折扣是否适用于子类别?

时间:2016-11-21 19:01:44

标签: api categories bigcommerce discounts

在BigC仪表板上,我可以将两种类型的折扣应用程序配置为类别级别折扣:

  1. "仅限此类别的产品"
  2. "此类别及其子类别中的产品"。
  3. Example Customer Group Category Level

    通过API检索客户组时,如何判断配置方式? API返回与客户组有关的非常有限的信息。例如:

    [
      {
        "id": 1,
        "name": "Sample Customer Group",
        "is_default": false,
        "category_access": {
          "type": "all"
        },
        "discount_rules": [
          {
            "type": "category",
            "category_id": "20",
            "method": "fixed",
            "amount": "9.0000"
          },
          {
            "type": "category",
            "category_id": "3",
            "method": "percent",
            "amount": "10.0000"
          }
        ]
      }
    ]
    

    我可以看到它适用的类别和折扣级别,但API不会返回折扣是否仅适用于类别,还是它的子类别。我怎样才能获得这些信息?

0 个答案:

没有答案