1.用户-获取储值购买记录
接口
POST https://open.jisuapp.cn/business/Stored/GetStoredLogByUserToken
请求参数说明
Content-Type: application/x-www-form-urlencoded
| 参数 | 类型 | 必填 | 说明 |
|---|---|---|---|
| access_token | string | Y | 用户授权的唯一票据 |
| app_id | string | Y | 应用 |
| user_token | string | Y | 用户user_token |
| start_time | string | N | 开始时间 |
| end_time | string | N | 结束时间 |
| type | int | Y | 0 全部 1 收入 2 支出 |
| page | int | Y | 页码 |
| pagesize | int | Y | 页码大小 |
返回参数
| 参数 | 类型 | 说明 |
|---|---|---|
| status | int | 状态码 0成功 1失败 |
| data | string | 说明 添加成功则返回空字符串 |
参数返回示例
{
"status": 0,
"data": [
{
"id": "72915",
"stored_id": "0",
"type": "2",
"order_id": "61a740849e73a931634883",
"app_id": "6RD2nsRY57",
"user_token": "bebb9d845096646be95a73df0aa495d0",
"stored_content": "{\"price\":\"1\",\"description\":\"\\u7ba1\\u7406\\u5458\\u624b\\u52a8\\u6dfb\\u52a0\",\"remark\":\"\"}", //stored_content.price 金额
"buyer_info": "{\"nickname\":\"28633037\",\"phone\":\"16666666666\"}",
"add_time": "2021-12-01 17:29:41",
"parent_app_id": "",
"app_shop_name": "alex-2"
}
],
"is_more": 1,
"current_page": 1,
"count": "2",
"total_page": 2
}