# Get Merchant Brand List
# Interface call request specification
Get a list of successful brands
Http request method: POST
https://api.weixin.qq.com/shop/account/get_brand_list?access_token=xxxxxxxxx
# Request Parameter Sample
{
}
# Return Package Example
{
"errcode": 0,
"errmsg":"ok",
"data": [
{
"brand_id": 2101,
"brand_wording": "Innisfree"
}
]
}
# Request Parameter Dxplaination
nothing
# Return parameter specification
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 |