Skip to main content
GET
/
tenant
/
{tenantId}
/
wallets
/
{id}
Retrieves comprehensive wallet information including balance and configuration.
curl --request GET \
  --url https://api.example.com/tenant/{tenantId}/wallets/{id}
{
  "isSuccess": true,
  "isFailure": false,
  "error": null,
  "value": {
    "id": 42,
    "name": "Example"
  }
}

Path Parameters

tenantId
integer<int64>
required

Identifier of the tenant.

id
integer<int64>
required

Identifier of the wallet tenant.

Response

200 - application/json

Wallet information retrieved successfully.

Wrapper for API operation results containing success status, error information, and return value.

isSuccess
boolean

True if the operation completed successfully, false otherwise.

Example:

true

isFailure
boolean

True if the operation failed, false otherwise.

Example:

false

error
object

Error information returned when the operation fails.

Example:
{
"code": "ValidationError",
"message": "The request parameters failed validation.",
"info": [
"The Name field is required.",
"The Id field must be greater than 0."
]
}
value
object

The result value returned when the operation is successful.

Example:
{
"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"
}