Get Withdrawal Order List
Request
GET https://custody-example-url/custody/v1/api/projects/{b_id}/integrated/withdraw-orders
Parameters
Field |
Type |
Description |
currency_arrayOptional |
String[] |
Asset name |
status_arrayOptional |
String[] |
Order Status |
start_date_timeOptional |
Long |
Order creation time start time(default query within 6 months data without transmission) |
end_date_timeOptional |
Long |
Order creation time end time(default query within 6 months data without transmission) |
keywordOptional |
String |
Search (Order ID, destination address, destination wallet) |
addressOptional |
String |
Destination address |
offset |
Integer |
Offset |
limit |
Integer |
Limit |
Response
Field |
Type |
Description |
bid |
String |
Business line ID |
order_no |
String |
Order ID |
currency |
String |
Asset name |
coin_name |
String |
Token name |
fee |
Integer |
Withdrawal service fee |
amount |
Integer |
Withdrawal amount |
dest_wallet_code |
String |
Destination wallet ID |
dest_address |
String |
Destination address |
dest_tag |
String |
Destination address's tag or memo |
status |
String |
Status (PROCESSING-processing; COMPLETE-complete; FAILED-failed) |
description |
String |
Order description |
create_time_stamp |
Long |
Order creation time |
Response Example
{
"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
}