在BigC仪表板上,我可以将两种类型的折扣应用程序配置为类别级别折扣:
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不会返回折扣是否仅适用于类别,还是它的子类别。我怎样才能获得这些信息?