developers_balance
Creates, updates, deletes, gets or lists a developers_balance
resource.
Overview
Name | developers_balance |
Type | Resource |
Id | google.apigee.developers_balance |
Fields
The following fields are returned by SELECT
queries:
- organizations_developers_get_balance
Successful response
Name | Datatype | Description |
---|---|---|
wallets | array | Output 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:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
organizations_developers_get_balance | select | organizationsId , developersId | Gets 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.
Name | Datatype | Description |
---|---|---|
developersId | string | |
organizationsId | string |
SELECT
examples
- organizations_developers_get_balance
Gets the account balance for the developer.
SELECT
wallets
FROM google.apigee.developers_balance
WHERE organizationsId = '{{ organizationsId }}' -- required
AND developersId = '{{ developersId }}' -- required;