1.获取套餐分组列表
接口
POST https://open.jisuapp.cn/business/Shop/GetPackageGroupList
请求参数说明
Content-Type: application/x-www-form-urlencoded
参数 | 类型 | 必填 | 说明 |
---|---|---|---|
access_token | String | Y | 用户授权的唯一票据 |
app_id | string | Y | 应用ID |
package_id | int | Y | 套餐ID |
page | int | Y | 页码 |
page_size | int | Y | 页码大小 |
返回参数
参数 | 类型 | 说明 |
---|---|---|
status | int | 状态码 0成功 1失败 |
data | string | 说明 |
参数返回示例
{
"status": 0,
"data": [
{
"id": "257",
"app_id": "6RD2nsRY57",
"package_id": "10017619",
"name": "默认分组",
"min_sales_num": "1",
"max_sales_num": "5",
"is_default": "1",
"add_time": "1611734777",
"update_time": "1611736924",
"is_deleted": "0"
}
],
"is_more": 0,
"current_page": 1,
"count": "1",
"total_page": 1
}