# 充值钱包查询
# 接口说明
根据学校和日期获取当天的充值流水明细
# 请求地址
https://open.wecard.qq.com/cgi-bin/pay/provider/recharge-records?access_token=
# access_token 获取
参考 https://wiki.weixiao.qq.com/api/third/oauth/access_token.html
# 请求方式
GET
# 请求参数
参数名 | 参数类型 | 描述 |
---|---|---|
org_code | string | 学校id |
date | string | 请求的日期 |
请求示例
cgi-bin/pay/provider/recharge-records?access_token={{access_token}}&org_code=1010343033&date=2022-07-13
# 返回参数
参数名 | 参数类型 | 描述 |
---|---|---|
id | string | 单号 |
user_id | string | 电子卡号/学工号 |
user_name | string | 姓名 |
acc_id | string | 钱包编号 |
acc_name | string | 钱包名称 |
time | string | 时间 |
amount | int | 操作数额,单位分 |
type | int | 操作类型:1.现金充值 2.微信在线充值 4.api接口核减 5.清空操作 6.api接口充值 |
out_billno | string | 第三方充值订单号 |
out_chan | int | 第三方充值渠道 |
org_ids | strng | 部门id |
org_name | strng | 部门名称 |
返回示例
{
"code": 0,
"data": [
{
"user_id": "202012345",
"user_name": "xxx",
"acc_id": "1010343033_99679965",
"acc_name": "余额",
"time": "2022-07-13 20:15:59",
"amount": 2,
"type": 1
}
],
"message": "成功"
}