# Get Brand List

# Interface call request specification

Http request method: POST
https://api.weixin.qq.com/product/brand/get?access_token=xxxxxxxxx

# Request Parameter Sample

{}

# Return Package Example

{
    "errcode": 0,
    "errmsg": "ok",
    "brands": 
    [
        {
            "first_cat_id": 123,
            "second_cat_id": 123,
            "third_cat_id": 124,
            "brand_info": 
            {                
                "brand_id": 0,
                "brand_name": "Testing"
            }
        }
    ]
}

# Return parameter specification

parameter type Introductions
Errcode number Error code
errmsg string Error message
brands[].first_cat_id number First-level categories
brands[].second_cat_id number Category II
brands[].third_cat_id number Category III
brands[].brand_info.brand_id number Brand ID
brands[].brand_info.brand_name string Brand name