1.获取分组列表-某个数据对象的分组
接口
POST https://open.jisuapp.cn/pc/Category/grouplist/
参数说明
Content-Type: application/x-www-form-urlencoded
参数 | 类型 | 必填 | 说明 |
---|---|---|---|
access_token | String | Y | 用户授权的唯一票据 |
form | String | n | 数据对象英文标识 |
page | int | n | 页码 没传的话获取全部数据 |
page_size | int | n | 每页数量 |
返回参数
参数 | 类型 | 说明 |
---|---|---|
id | int | id |
name | string | 名称 |
description | string | 描述 |
category | string | 对象英文标识 |
goods_type | int | 商品类型id |
common_type | int | 通用类型id |
item_count | int | 数量 |
category_name | string | 对象名称 |
参数返回示例
{
"status": 0,
"data": [
{
"id": "379",
"name": "分组测试1-3",
"description": "描述1-1",
"category": "MqXSARTGay",
"goods_type": "0",
"common_type": "0",
"item_count": "0",
"category_name": "13212"
},
{
"id": "384",
"name": "分组测试2",
"description": "描述2",
"category": "MqXSARTGay",
"goods_type": "0",
"common_type": "0",
"item_count": "1",
"category_name": "13212"
},
{
"id": "386",
"name": "分组测试3",
"description": "描述2",
"category": "MqXSARTGay",
"goods_type": "0",
"common_type": "0",
"item_count": "1",
"category_name": "13212"
}
]
}