简要描述:
- 获取充值记录列表
请求URL:
POST/plugin.yunqian-api.api.recharge.query-list
参数:
参数名 | 是否必须 | 类型 | 说明 |
---|---|---|---|
page | 否 | int | 页码 |
pagesize | 否 | int | 默认10条 |
id | 否 | int | id |
endTimeStart | 否 | int | 使用截止时间start |
endTimeEnd | 否 | int | 使用截止时间end |
createdAtStart | 否 | int | 充值时间start |
createdAtEnd | 否 | int | 充值时间end |
apiItemId | 否 | int | 接口ID:1-皮肤分析,2-微信转发识图,3-快递查询 |
orderField | 否 | string | 排序字段:id,end_time,created_at |
orderBy | 否 | string | 排序方式:asc,desc |
返回示例:
正确时返回:
{
"result": 1,
"msg": "成功",
"data": {
"statistics": {
"apiTotalCount": "1000",
"apiTotalPrice": "100.00",
"apiTotalUsed": 11
},
"data": {
"total": 1,
"per_page": 10,
"current_page": 1,
"last_page": 1,
"next_page_url": null,
"prev_page_url": null,
"from": 1,
"to": 1,
"data": [
{
"id": 1,
"uniacid": 2,
"uid": 2668,
"apiCount": 1000,
"apiPrice": "100.00",
"orderSn": "",
"apiItemId": 1,
"apiItemDesc": "皮肤分析",
"endTime": "2021-10-24 08:57:57",
"createdAt": "2020-10-24 08:57:57"
}
]
}
}
}
错误时返回:
返回参数说明:
参数名 | 类型 | 说明 |
---|---|---|
id | int | id |
apiCount | int | 接口数量 |
apiPrice | float | 花费金额 |
endTime | int | 使用截止时间 |
createdAt | int | 充值时间 |
statistics | obj | 统计 |
statistics->apiTotalCount | int | 接口总数 |
statistics->apiTotalPrice | float | 充值总金额 |
statistics->apiTotalUsed | int | 接口使用总数 |
备注:
url修改 页码入参改成page,和商城一样 分页出参改成现在商城一样的了 列表数据在data中的data里 createdAt和endTime改成字符串类型
- 更多返回错误代码请看首页的错误代码描述