# 获取品牌列表
# 接口调用请求说明
http请求方式:POST
https://api.weixin.qq.com/product/brand/get?access_token=xxxxxxxxx
# 请求参数示例
{}
# 回包示例
{
"errcode": 0,
"errmsg": "ok",
"brands":
[
{
"first_cat_id": 123,
"second_cat_id": 123,
"third_cat_id": 124,
"brand_info":
{
"brand_id": 0,
"brand_name": "测试"
}
}
]
}
# 回包参数说明
参数 | 类型 | 说明 |
---|---|---|
errcode | number | 错误码 |
errmsg | string | 错误信息 |
brands[].first_cat_id | number | 第一级类目 |
brands[].second_cat_id | number | 第二级类目 |
brands[].third_cat_id | number | 第三级类目 |
brands[].brand_info.brand_id | number | 品牌ID |
brands[].brand_info.brand_name | string | 品牌名称 |