查询提币订单详情
请求
GET https://custody-example-url/custody/v1/api/projects/{b_id}/integrated/withdraw-orders/{order_no}
参数
字段 |
类型 |
描述 |
b_id |
String |
业务线ID |
order_no |
String |
订单号 |
响应
字段 |
类型 |
描述 |
bid |
String |
业务线ID |
applicant |
String |
制单人 |
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 |
订单创建时间 |
tx_infos |
Object[] |
交易信息 |
-tx_hash |
String |
交易哈希 |
响应示例
{
"code": 0,
"data": {
"bid": "string",
"applicant": "string",
"order_no": "string",
"currency": "string",
"coin_name": "string",
"fee": 100000000,
"amount": 200000000,
"dest_wallet_code": "string",
"dest_address": "string",
"dest_tag": "string",
"description": "string",
"status": "string",
"create_time_stamp": 1663130578000,
"tx_hash": [
{
"tx_hash": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
}
]
},
"message": "",
"successful": true
}