查询提现订单列表
GET/withdraw/list
分页查询商户的提现订单列表。
Request
Query Parameters
0
- 成功1
- 待审批2
- 审批中3
- 区块确认中4
- 失败5
- 驳回
chainId int32
链 ID
此为平台内部 ID,不是链上或者钱包里的链 ID,可以从查询链列表接口获取
page int64
Possible values: >= 1
and <= 1000000
Default value: 1
页码
size int64
Possible values: <= 500
Default value: 10
每页显示的记录数
orderStatus int32
Possible values: [0
, 1
, 2
, 3
, 4
, 5
]
订单状态
transactionHash string
交易哈希
startTime int64
订单创建开始时间
格式:Unix 时间戳,单位:秒
endTime int64
订单创建结束时间
格式:Unix 时间戳,单位:秒
Responses
- 200
- 401
- 403
- 404
OK
- application/json
- Schema
- Example (from schema)
- Example
Schema
Array [
0
- 成功1
- 待审批2
- 审批中3
- 区块确认中4
- 失败5
- 驳回]
code int32required
状态码
msg stringrequired
成功或错误提示
description string
错误提示详情
data
object
分页结果对象
count int64required
符合条件的记录总数
page int64required
当前查询的页码
size int64required
每页显示的记录数
list
object[]
required
chainId int32required
链 ID
此为平台内部 ID,不是链上或者钱包里的链 ID,可以从查询链列表接口获取
currencyId int32required
货币 ID
可以从查询货币列表接口获取
withdrawId int32required
提现订单 ID
outTradeNo stringnullable
商户订单号
withdrawAmount stringrequired
提现金额
注:该字段的值为整型数字,通过 (实际金额 * 10^货币小数位数) 计算而来
仅对专业版商户:可包含多个金额,用,
分隔,与提现地址一一对应
withdrawAddress stringrequired
提现地址
仅对专业版商户:可包含多个地址,用,
分隔,与提现金额一一对应
withdrawStatus int32required
Possible values: [0
, 1
, 2
, 3
, 4
, 5
]
提现订单状态
withdrawTime date-timerequired
提现申请时间
transferHash stringnullable
交易哈希
{
"code": 0,
"msg": "string",
"description": "string",
"data": {
"count": 0,
"page": 0,
"size": 0,
"list": [
{
"chainId": 0,
"currencyId": 0,
"withdrawId": 0,
"outTradeNo": "string",
"withdrawAmount": "string",
"withdrawAddress": "string",
"withdrawStatus": 0,
"withdrawTime": "2024-07-29T15:51:28.071Z",
"transferHash": "string"
}
]
}
}
{
"code": 200,
"msg": "success",
"data": {
"page": 1,
"size": 5,
"count": 53,
"list": [
{
"withdrawId": 1231,
"chainId": 1,
"currencyId": 2,
"outTradeNo": "202404191522",
"withdrawStatus": 1,
"withdrawAddress": "TA1AtPt6bRfFgc4KuXJb9LrJrqxeXiaV2A",
"withdrawAmount": "1000000",
"transferHash": null,
"withdrawTime": "2024-04-19 15:22:46"
},
{
"withdrawId": 1230,
"chainId": 1,
"currencyId": 2,
"outTradeNo": "",
"withdrawStatus": 1,
"withdrawAddress": "TA1AtPt6bRfFgc4KuXJb9LrJrqxeXiaV2A",
"withdrawAmount": "1000000",
"transferHash": null,
"withdrawTime": "2024-04-19 15:18:49"
},
{
"withdrawId": 1229,
"chainId": 1,
"currencyId": 2,
"outTradeNo": "",
"withdrawStatus": 1,
"withdrawAddress": "TA1AtPt6bRfFgc4KuXJb9LrJrqxeXiaV2A",
"withdrawAmount": "1000000",
"transferHash": null,
"withdrawTime": "2024-04-19 15:16:52"
},
{
"withdrawId": 1228,
"chainId": 1,
"currencyId": 2,
"outTradeNo": "",
"withdrawStatus": 1,
"withdrawAddress": "TA1AtPt6bRfFgc4KuXJb9LrJrqxeXiaV2A",
"withdrawAmount": "1000000",
"transferHash": null,
"withdrawTime": "2024-04-19 15:02:37"
},
{
"withdrawId": 1221,
"chainId": 1,
"currencyId": 2,
"outTradeNo": "202404191100",
"withdrawStatus": 0,
"withdrawAddress": "TA1AtPt6bRfFgc4KuXJb9LrJrqxeXiaV2A",
"withdrawAmount": "1000000",
"transferHash": "0337494b43b032050fe03cb41a6afa8cbd283faaea8959c86744dc0b10660607",
"withdrawTime": "2024-04-19 10:59:16"
}
]
}
}
Unauthorized
Forbidden
Not Found
Loading...