Retrieves comprehensive information about a specific wallet including balance, configuration, and blockchain details.
Identifier of the wallet tenant.
Wallet details retrieved successfully.
Wrapper for API operation results containing success status, error information, and return value.
True if the operation completed successfully, false otherwise.
true
True if the operation failed, false otherwise.
false
Error information returned when the operation fails.
{
"code": "ValidationError",
"message": "The request parameters failed validation.",
"info": [
"The Name field is required.",
"The Id field must be greater than 0."
]
}The result value returned when the operation is successful.
{
"walletTenantId": 2048,
"walletId": 1,
"isActive": true,
"isVisible": true,
"isTreasuryWallet": false,
"name": "Main Wallet",
"description": "Primary operational wallet",
"walletBalance": 12.345,
"walletAddress": "0x1234567890abcdef1234567890abcdef12345678",
"network": "Polygon",
"networkIcon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUA",
"networkCoinName": "MATIC",
"walletType": "EOA",
"blockchainId": 137,
"isGasStation": false,
"autoRefuelWalletTenantsCount": 0,
"autoRefuelIsEnabled": false,
"autoRefuelMinimumBalance": 0.1,
"autoRefuelAmount": 1,
"autoRefuelWalletName": "Gas Station Wallet"
}