Retrieves all wallets configured to operate as gas stations for a specific wallet tenant.
GasStationWalletsClientModel containing:
Identifier of the wallet tenant whose gas station wallets are requested.
Gas station wallets successfully retrieved.
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.
{
"gasStationWallets": [
{
"walletTenantId": 1001,
"balance": 12.34,
"name": "Operations Wallet"
}
]
}