Get Transfer Detail with Exchange
GET
/open-api/v1/wallet/transfer/exchange/detailThis method allows to get transfer details with Exchange by orderViewId or requestId
- orderViewId or requestId shall be passed in Request Query.
API Key permission group :
Enable Enquiry
Request
Query Params
orderViewId
string
optional
Transfer transaction ID
Example:
1325589336357780427
requestId
string
optional
Client request identifier: Universal Unique identifier provided by the client side.
timestamp
integer
required
Current timestamp in millisecond
Example:
1640995200000
walletId
integer
required
Wallet ID
Example:
1325589336357780500
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
Transfer Amount
Example:
10.2
coinSymbol
string
optional
Coin Symbol
Example:
USDT
direction
integer <int32>
optional
Transfer with exchange direction:
10: custody->exchange
20: exchange->custody
Example:
10
exchangeCode
integer <int32>
optional
Exchnage code,
10: binance
Example:
10
exchangeUserId
string
optional
Binance UID
Example:
842131231
orderViewId
string
optional
Transfer Transaction Id
Example:
2.2161420305164743e+25
status
integer <int32>
optional
Transfer with exchange status:
Example:
10
walletId
integer <int64>
optional
Wallet Id
Example:
201108087331
ExampleSuccessful Test Examples
{
"data": {
"orderViewId": "23886401831948479677280001",
"direction": 10,
"walletId": 1544594690749788200,
"createTime": 1684913811000,
"exchangeCode": 10,
"exchangeUserId": "3047355052042147073",
"coinSymbol": "MATIC",
"amount": "0.001",
"status": 30,
"requestId": "1684913808592"
},
"code": "000000",
"message": "Success"
}
Last modified: a year ago