查询提币订单列表
请求
GET https://custody-example-url/custody/v1/api/projects/{b_id}/integrated/withdraw-orders
参数
字段 |
类型 |
描述 |
currency_array可选 |
String[] |
币种名称 |
status_array可选 |
String[] |
订单状态 |
start_date_time可选 |
Long |
订单创建时间起始时间(不传默认查询6个月内数据) |
end_date_time可选 |
Long |
订单创建时间截止时间(不传默认查询6个月内数据) |
keyword可选 |
String |
模糊搜索(订单号、目的地址、目的钱包) |
address可选 |
String |
目的地址 |
offset |
Integer |
记录查询索引 |
limit |
Integer |
每页查询数量 |
Response
字段 |
类型 |
描述 |
bid |
String |
业务线ID |
order_no |
String |
订单号 |
currency |
String |
币种名称 |
coin_name |
String |
代币名称 |
fee |
Integer |
提币手续费 |
amount |
Integer |
提币数量 |
dest_wallet_code |
String |
目的钱包(内部转账) |
dest_address |
String |
目的地址 |
dest_tag 可选 |
String |
目的地址tag或memo |
status |
String |
状态(PROCESSING-处理中,FINISHED-完成,FAILED-失败) |
description |
String |
订单描述 |
create_time_stamp |
Long |
订单创建时间 |
响应示例
{
"code": 0,
"data": {
"limit": 10,
"list": [
{
"bid": "string",
"order_no": "string",
"currency": "string",
"coin_name": "string",
"description": "string",
"status": "string",
"dest_wallet_code": "string",
"dest_address": "string",
"dest_tag": "string",
"fee": 50000000,
"amount": 200000000,
"create_time_stamp": 1663625798000
}],
"metadata": {},
"offset": 0,
"total": 1
},
"message": "",
"successful": true
}