Get Withdrawal Details
GET
/open-api/v1/wallet/withdrawal/detailThis method allows to get withdrawal details of the requested withdrawal transaction ID.
API Key permission group : Enable Enquiry
Request
Query Params
orderViewId
string
required
Withdrawal transaction ID
Example:
22161420305164742013280002
timestamp
integer
required
Current timestamp in millisecond
Example:
1640995200000
Header Params
open-apikey
string
required
OpenAPI key string
signature
string
required
Signature of the request
Request samples
Responses
The operation succeeded(200)
Business error(200)
The client request is invalid(400)
Authentication failed (e.g., invalid token specified by the Authorization header)(401)
Authentication failed, but the operation is not allowed(403)
Requested resource does not exist(404)
Client request rate exceeded the limit(429)
System error(500)
The operation succeeded
HTTP Code: 200
Content Type : JSONapplication/json
Data Schema
amount
string
optional
Amount
Example:
10.2845
coinSymbol
string
optional
Coin symbol
Example:
ETH
confirmedBlockCount
integer <int32>
optional
Confirmed block count
Example:
30
unlockConfirm
integer
optional
unlockConfirm
maxConfirmBlock
integer
optional
maxConfirmBlock
direction
integer <int32>
optional
Direction,
10: deposit
20: withdrawal
Example:
10
feeAmount
string
optional
Fee amount
Example:
0.00041
feeSymbol
string
optional
Fee symbol
Example:
ETH
fromAddress
string
optional
From address
Example:
0x25adb98b6dacd3a8bfeec5a321daa879b401eab3
memo
string
optional
Memo
Example:
82486739
network
string
optional
Network symbol
Example:
USDT
orderViewId
string
optional
Order view id (Only Applicable to Withdrawal request)
Example:
2.205209432454564e+25
status
integer <int32>
optional
10: Pending 20: Processing 30: Send success 40: Confirmed 99: Failed
toAddress
string
optional
To address
Example:
0x25adb98b6dacd3a8bfeec5a321daa879b401eab3
transferType
integer <int32>
optional
Transfer type,10: on chain transfer
20: internal transfer
Example:
10
txId
string
optional
Transaction id (Only Applicable to on-chain transfer)
Example:
0xa6f245a04caa71ab153e7201b511a3857fbc2304874e386977163f3850bde12
txTime
integer <int64>
optional
Transaction time
Example:
1640995200000
walletId
integer <int64>
optional
Wallet identity
Example:
201108087331
Example成功示例
{
"data": {
"orderViewId": "22072045246855536837120002",
"txId": "0x5fa38d6345787fa909d86bec32cb2409a6955386e2e2484bdb7cc647c3741b89",
"transferType": 10,
"direction": 20,
"fromAddress": "0x52f958e1C7EBD882021B926f1f29E9f150451d41",
"toAddress": "0x8c4004c3196c379e6f6e99ac7379c7f8bfb8697b",
"network": "BSC",
"coinSymbol": "XVS",
"amount": "0.020000000000000000",
"feeSymbol": "BNB",
"feeAmount": "0.000390480000000000",
"status": 40,
"confirmedBlockCount": 68,
"memo": "",
"txTime": 1655866037000,
"walletId": 1524233773773377500
},
"code": "200",
"message": "SUCCESS"
}
Last modified: a year ago