查询出金记录

查询出金记录

post

说明:交易桥查询出金记录

group=tradeApi
version=0.0.1
bizType=tradeapi.admin.AccountAdminService.queryWithdrawList
Header parameters
companyIdstringOptionalExample: {{company}}
tracestringOptionalExample: {{mock_trace}}
apiKeystringOptionalExample: {{apikey}}
recvWindowstringOptionalExample: 5000
signaturestringOptionalExample: {{sign}}
langstringOptionalExample: zh-CN
versionstringOptionalExample: 0.0.1
groupstringOptionalExample: tradeApi
Body
tradeTypeinteger · longRequired

玩法类型。10-交易桥;

exchangeIdstringRequired

平台标识符。binance-币安;okx-欧易

accountNamestringRequired

平台账号别名

customerIdinteger · longOptional

客户Id

customerNostringRequired

客户编码

customerGroupIdinteger · longRequired

客户组Id

currencystringOptional

筛选币种

statusstringOptional

筛选状态,1-等待划转;2-等待提币;3-等待平台审批;4-等待确认;5-失败;6-完成;7-被拒绝;8-被取消;

startTimestringOptional

筛选的开始时间戳,13位时间戳

endTimestringOptional

筛选的结束时间戳,13位时间戳

limitstringOptional

返回结果的数量,默认20,最大100。如小于1或者大于100均仅返还20条

Responses
200Success
application/json
post
POST /global/tradeapi.admin.AccountAdminService.queryWithdrawList HTTP/1.1
Host: 
Content-Type: application/json
Accept: */*
Content-Length: 196

{
  "tradeType": 1,
  "exchangeId": "text",
  "accountName": "text",
  "customerId": 1,
  "customerNo": "text",
  "customerGroupId": 1,
  "currency": "text",
  "status": "text",
  "startTime": "text",
  "endTime": "text",
  "limit": "text"
}
200Success
{
  "bizCode": "text",
  "code": "text",
  "msg": "text",
  "tm": 1,
  "trace": "text",
  "msgParams": "text",
  "ok": true,
  "fail": true,
  "data": [
    {
      "exchangeId": "text",
      "id": "text",
      "amount": "text",
      "commission": "text",
      "currency": "text",
      "network": "text",
      "status": "text",
      "address": "text",
      "txId": "text",
      "confirmTimes": "text",
      "applyTime": "text",
      "completeTime": "text",
      "withdrawOrderId": "text",
      "actionType": "text",
      "walletType": "text"
    }
  ]
}

Last updated