Googleapis Androidenterprise
Android Enterprise API is a Google API for managing Android apps and devices in enterprise environments.
- Base URL:
https://androidenterprise.googleapis.com - Auth: OAuth 2.0 (user-delegated) — attach an InTouch
oauthcredential. Mint one withitcli.py /oauth <provider>(device-code) or/google-auth(Google); the server auto-refreshes the access token before each run, so the connector never handles or stores tokens.
Operations
androidenterprise_enterprises_list— GET /androidenterprise/v1/enterprises — Looks up an enterprise by domain name. This is only supported for enterprises crandroidenterprise_enterprises_get— GET /androidenterprise/v1/enterprises/{enterpriseId} — Retrieves the name and domain of an enterprise.androidenterprise_grouplicenses_list— GET /androidenterprise/v1/enterprises/{enterpriseId}/groupLicenses — Retrieves IDs of all products for which the enterprise has a group license. **Noandroidenterprise_grouplicenses_get— GET /androidenterprise/v1/enterprises/{enterpriseId}/groupLicenses/{groupLicenseId} — Retrieves details of an enterprise's group license for a product. Note: Thisandroidenterprise_grouplicenseusers_list— GET /androidenterprise/v1/enterprises/{enterpriseId}/groupLicenses/{groupLicenseId}/users — Retrieves the IDs of the users who have been granted entitlements under the liceandroidenterprise_products_list— GET /androidenterprise/v1/enterprises/{enterpriseId}/products — Finds approved products that match a query, or all approved products if there is
Inputs
- a linked
oauthcredential (no key inputs) — the server injects a freshAuthorization: Bearerfrom it operation— one of the operations above- path parameters when an operation's path contains
{...} query— optional JSON object of query paramsbody— JSON object for create/update ops
Example
operation: androidenterprise_enterprises_list
# (attach an 'oauth' credential to the task — no inline secrets)
Publishes
The keys a later task may reference as {{taskName.key}}. Referencing anything not listed here resolves to nothing at run time.
erroroperationresultstatus
Input Properties
Every property this tool accepts, from its own tool.iml.
| Property | Type | Required | Default | Description |
|---|---|---|---|---|
operation |
string | yes | — | One of: androidenterprise_enterprises_list, androidenterprise_enterprises_get, androidenterprise_grouplicenses_list, androidenterprise_grouplicenses_get, androidenterprise_grouplicenseusers_list, androidenterprise_products_list |
enterpriseId |
string | no | — | Path parameter enterpriseId (required by some operations). |
groupLicenseId |
string | no | — | Path parameter groupLicenseId (required by some operations). |
query |
string | no | — | Optional query params as a JSON object string, e.g. {"limit": 10}. |