简要描述:

  • 获取门店对应的所有商品分类

请求URL:

POST/wapapi/addons/execute/addons/store/controller/store/action/getStoreGoodsCategoryList

参数:

参数名 是否必须 类型 说明
store_id string 门店id

返回示例:

正确时返回:

{
    "code": 1,
    "message": "获取成功",
    "data": {
       0[
	   		category_id: 67
			category_name: "手机"
	   ],
	   1[
	   		category_id: 79
			category_name: "水果"
	   ]
    }
}

错误时返回:

{
    "code": -1,
    "message": "系统繁忙"
}

返回参数说明:

参数名 类型 说明
category_id int 一级分类id
category_name string 一级分类名称