文档
测试

充提记录

POST
www.lengqianbao.com/index.php/api/wallet/getlog

请求头

参数名
类型
描述
必填
usercode
string
用户标识
必填

请求参数

参数名
类型
描述
必填
wtype
string
币种
可选
type
int
0(或者空)全部,1充币,2提币
可选
stime
string
开始时间
可选
etime
string
结束时间
可选
page
int
可选
pagesize
int
每页显示,默认(10)
可选

响应参数

参数名
类型
描述
必填
result
array
数据
必填
data
array
返回数据
必填
total
int
总数量
必填
list
array
返回数据
必填
message
string
信息描述
必填
status
int
状态(0失败,1成功)
必填

说明 / 示例

```language { "status": 1, "result": { "data": { "total": 1, #总数量 "list": [ { "type": 1, #1充币,2提币 "wtype": "USDT", #币种 "createtime": "2020-08-19 22:51:16",#时间 "num": "0.20000000", #交易数量 "fee": "0.00001500", #手续费 "tourl": null, #提币地址 "snid": null, #区块交易id "status": "完成" #状态 } ] } } } ```