提现历史
GET: /v1/spot/withdraw/history
Parameters
| 参数 | 数据类型 | 是否必须 | 默认值 | 描述 | 取值范围 | 
|---|---|---|---|---|---|
| currency | string | true | 币种名称,可从'获取JU可充提的币种'接口中获取 | ||
| chain | string | true | 转账网络名称,可从'获取JU可充提的币种'接口中获取 | ||
| status | string | false | 提现记录的状态,字符串类型(含义见公共模块-充值/提现记录状态码及含义) | SUBMIT、REVIEW、AUDITED、AUDITED_AGAIN、PENDING、SUCCESS、FAIL、CANCEL | |
| fromId | Long | false | 上次开始分页的Id,即记录的主键id | ||
| direction | String | false | NEXT | 分页方向 | NEXT:下一页,PREV:上一页 | 
| limit | int | false | 10 | 每页记录数,最大不超过200 | 1 <= limit <= 200 | 
| startTime | Long | false | 查询范围开始边界,毫秒级时间戳 | ||
| endTime | Long | false | 查询范围结束边界,毫秒级时间戳 | 
Response
{
  "code": 200,
  "msg": "string",
  "msgInfo": [
    {}
  ],
  "data": {
    "hasPrev": true,                     //是否有上一页
    "hasNext": true,                     //是否有下一页
    "items": [
      {
          "id": 763111,                  //提现记录id
          "currency": "usdt",            //币种名称
          "chain": "Ethereum",           //提现网络
          "address": "0xfa3abfa50eb2",   //提现目标地址
          "memo": "",
          "status": "REVIEW",            //状态,含义见公共模块-充值/提现记录状态码及含义
          "amount": "30",                //提现金额
          "fee": "0",                    //提现手续费
          "confirmations": 0,            //区块确认数
          "transactionId": "",           //交易哈希
          "createdTime": 1667763470000                                
      },
      {
          "id": 763107,
          "currency": "usdt",
          "chain": "Tron",
          "address": "TYnJJwaJKkqVvE2zEfUvFbHgKxVBY5zGq9",
          "memo": "",
          "status": "REVIEW",
          "amount": "50",
          "fee": "1",
          "confirmations": 0,
          "transactionId": "",
          "createdTime": 1667428286000
      }
    ]
  }
}