Get Transaction Details of Prime Wallet Internal Transfer
GET
/open-api/v1/subwallet/transfer/detailThis method allows you to get transaction detail of an internal transfer of Prime wallets
- Either orderViewId or requestId shall be passed in params.
API Key permission group :
Enable Enquiry
Request
Order view id of Prime wallet internal transfer
Client unique identifier of internal transfer order
Wallet id in string format
Timestamp in milliseconds
OpenAPI Key String
Signature of the request
Request samples
Responses
response data, maybe null
10: prime wallet->sub wallet
20: sub wallet->prime wallet
30: sub wallet-> sub wallet
40: prime wallet->prime wallet
From Wallet Id (Only applicable to Prime Wallet)
To Wallet Id (Only applicable to Prime Wallet)
10: Pending
20: Processing
30: Send success
99: Failed
Universal Unique identifier provided by the client side.
'000000' indicates success, while any others indicate failure.
When the code is '000000' (success), it represents the details of the response. Otherwise, it represents the details of the error.
{
"data": {
"orderViewId": "22193643464446333255520001",
"direction": 40,
"fromWalletIdStr": "1544594690749788161",
"toWalletIdStr": "1544927343347867650",
"createTime": 1664446435000,
"coinSymbol": "USDC",
"amount": "10.71000000",
"status": 30,
"requestId": null
},
"code": "000000",
"message": "Success"
}