- 获取行业分类列表
接口
POST https://open.jisuapp.cn/business/Store/GetAllIndustryTypeList
请求参数说明
Content-Type: application/x-www-form-urlencoded
| 参数 | 类型 | 必填 | 说明 |
|---|---|---|---|
| access_token | string | Y | 用户授权的唯一票据 |
返回参数
| 参数 | 类型 | 说明 | |
|---|---|---|---|
| id | int | 分类id | |
| name | string | 分类名 | |
| p_id | int | 父分类id | |
| subcat | array | 子分类信息 |
参数返回示例
{
"status": 0,
"data": [
{
"id": "101",
"name": "餐饮",
"p_id": "0"
},
{
"id": "102",
"name": "公司企业",
"p_id": "0",
"subcat": [
{
"id": "107",
"name": "汽车",
"p_id": "102"
},
{
"id": "108",
"name": "建材、家居、家具",
"p_id": "102"
},
]
}
}
}