# Get a list of merchant brands
# Dxplaination of Interface Call Request
Get a list of brands that have successfully applied
http请求方式:POST
https://api.weixin.qq.com/shop/account/get_brand_list?access_token=xxxxxxxxx
# Example of request parameters
{
}
# Examples of back-up
{
"errcode": 0,
"errmsg":"ok",
"data": [
{
"brand_id": 2101,
"brand_wording": "悦诗风吟"
}
]
}
# Dxplaination of request parameters
nothing
# Dxplaination of callback parameters
| parameter | type | Introductions |
|---|---|---|
| errcode | number | Error code |
| errmsg | string | Error message |
| data | object array | List of brands |
| data[].brand_id | number | Brand ID |
| data[].brand_wording | string | Brand Name |