一、基本内容
接口地址:
/api/merchant/rechargeorder
请求类型:POST
接口说明:根据地址获取充值记录。
二、提交参数
参数 | 是否必填 | 描述 |
username | 是 | 客户平台用户名,例如a123456 |
appid | 是 | API 密钥 |
address | 是 | 需要查询的usdt地址 |
sign | 是 | 签名 |
三、返回参数
返回参数 | 描述 |
status | 1:获取成功,不等于1:获取失败 |
err | status为不等于1时,返回该参数,错误描述 |
data[] | status为1时,返回订单信息 |
data[].sn | 系统订单号 |
data[].from_address | 转出地址 |
data[].to_address | 转入地址 |
data[].orderid | 商户地址 |
data[].txid | 链上txid |
data[].num | 订单金额,为提升精度,需要除以10000 |
data[].mum | 实到金额,为提升精度,需要除以10000 |
data[].status | 订单状态:0在支付中 、1支付成功、2 等待确认、3支付超时、4检测到部分、5取消订单 |
data[].localusermark | 商户用户的标识 |
data[].notifyUrl | 回调地址 |
data[].updatetime | 到账时间 |
四、返回示例
{ "status": 1, "data": [{ "sn": "cz-5d75c5***-e787-ae56d71f14d3", "from_address": null, "to_address": "TKec***oBA1M6ypePK8N6ZQUvZ", "orderid": "16***8598", "txid": null, "num": "0.00000000", "status": 5, "localusermark": "1", "notifyUrl": null, "updatetime": null }, { "sn": "cz-8bac***70d8-eafd-954ddbc5f6b6", "from_address": null, "to_address": "TKecQ***CCzeCoBA1M6ypePK8N6ZQUvZ", "orderid": "166***8624", "txid": null, "num": "10000.00000000", "status": 5, "localusermark": "1", "notifyUrl": null, "updatetime": null }, ...] }