文档
测试

查询商品分类

POST
http://manage.51zheli.com/productApi/findProductCategory

接口描述

商品分类:商品分类列表

请求头

参数名
类型
描述
必填
channelCode
string
FL
必填

响应参数

参数名
类型
描述
必填
msg
string
示例:success,提示语
必填
code
string
示例:0,状态码
必填
data
array
数据列表
必填
productCategoryId
number
示例:274 ,分类ID
必填
name
string
示例:女装,分类名称
必填
parentId
number
示例:268,上级分类ID
必填

说明 / 示例

示例: ```json { "code": "0", "msg": "success", "data": [ { "productCategoryId": 1, "name": "箱包", "parentId": 0 }, { "productCategoryId": 2, "name": "母婴", "parentId": 0 }, { "productCategoryId": 3, "name": "美妆", "parentId": 0 }, { "productCategoryId": 5, "name": "食饮", "parentId": 0 }, { "productCategoryId": 46, "name": "家居1", "parentId": 0 }, { "productCategoryId": 183, "name": "水果生鲜", "parentId": 5 }, { "productCategoryId": 187, "name": "数码", "parentId": 0 }, { "productCategoryId": 233, "name": "保健", "parentId": 0 }, { "productCategoryId": 254, "name": "户外", "parentId": 0 }, { "productCategoryId": 268, "name": "服饰", "parentId": 0 }, { "productCategoryId": 293, "name": "食物", "parentId": 0 }, { "productCategoryId": 295, "name": "3C数码", "parentId": 0 } ] } ```