Skip to main content

appgroups_balance

Creates, updates, deletes, gets or lists an appgroups_balance resource.

Overview

Nameappgroups_balance
TypeResource
Idgoogle.apigee.appgroups_balance

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
walletsarrayOutput only. List of all wallets. Each individual wallet stores the account balance for a particular currency.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
organizations_appgroups_get_balanceselectorganizationsId, appgroupsIdGets the account balance for the AppGroup.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
appgroupsIdstring
organizationsIdstring

SELECT examples

Gets the account balance for the AppGroup.

SELECT
wallets
FROM google.apigee.appgroups_balance
WHERE organizationsId = '{{ organizationsId }}' -- required
AND appgroupsId = '{{ appgroupsId }}' -- required
;