Skip to main content

developers_balance

Creates, updates, deletes, gets or lists a developers_balance resource.

Overview

Namedevelopers_balance
TypeResource
Idgoogle.apigee.developers_balance

Fields

The following fields are returned by SELECT queries:

Successful response

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_developers_get_balanceselectorganizationsId, developersIdGets the account balance for the developer.

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
developersIdstring
organizationsIdstring

SELECT examples

Gets the account balance for the developer.

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