9. 账务提现接口
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了9. 账务提现接口相关的知识,希望对你有一定的参考价值。
9.账务相关
9.1.查询老师账务信息
- 请求
/sett/sett
参数:
id 老师编号,【可选】省略时表示取当前登录用户的账务信息。
权限
老师或管理员登录。
-
响应
{ "code": 0, "data": { "count": 1, "ts": 1533894838, "items": [ { "id": "2", "user_id": "7", "total_income": 0.01, "total_withdraw": "0.00", "total_left": "0.01", "can_withdraw": "0.01", "sett_time": null, "update_time": "2018-08-10 17:53:58", "status": "0", "lock_time": null } ] } }
total_income 总收入
total_withdraw 已提现总额
total_left 未提现金额
can_withdraw 可提现金额
update_time 统计时间
9.2.查询提现记录
- 请求
/sett/withdrawList
参数:
id 老师编号,【可选】省略时表示取当前登录用户的账务信息。
权限
老师或管理员登录。
* **响应**
{
"code": 0,
"data": {
"count": 1,
"ts": 1533895178,
"items": [
{
"id": "1",
"user_id": "7",
"amount": "1.00",
"servicer": null,
"trade_no": null,
"third_trade_no": null,
"third_buyer_id": null,
"pay_status": "2",
"add_time": null,
"pay_time": null
}
]
}
}
amount 提现金额
servicer 提现渠道
1 = 支付宝
2 = 微信
third_trade_no 支付平台交易序列号
third_buyer_id 支付平台用户账号
pay_status 支付状态
0 = 创建
1 = 正在支付
2 = 支付完成
4 = 支付异常
add_time 请求支付时间
pay_time 支付完成时间
以上是关于9. 账务提现接口的主要内容,如果未能解决你的问题,请参考以下文章