Identifier of the tenant whose custodian wallets are requested.
Identifier of the custodian whose wallets should be returned.
Defines whether inactive wallets should be excluded from the response.
Returned when wallets are 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.
{
"custodianId": 42,
"custodianName": "Alpha Treasury Desk",
"custodianProvider": "Fireblocks",
"wallets": [
{
"walletTenantId": 1024,
"walletId": 84,
"metadataJson": "{\"label\":\"Treasury\"}",
"blockchainId": 137,
"network": "Polygon",
"networkIcon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUA",
"address": "0x1234567890abcdef1234567890abcdef12345678",
"isVisible": true,
"isActive": true,
"isTreasuryEnabled": true,
"isGasStationEnabled": false
}
]
}