Googleapis Admin
Google Admin SDK API is a set of APIs for managing Google Workspace users, groups, domains, devices, and administrative settings.
- Base URL:
https://admin.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
directory_chromeosdevices_list— GET /admin/directory/v1/customer/{customerId}/devices/chromeos — Retrieves a paginated list of Chrome OS devices within an account.directory_chromeosdevices_get— GET /admin/directory/v1/customer/{customerId}/devices/chromeos/{deviceId} — Retrieves a Chrome OS device's properties.admin_customer_devices_chromeos_commands_get— GET /admin/directory/v1/customer/{customerId}/devices/chromeos/{deviceId}/commands/{commandId} — Gets command data a specific command issued to the device.directory_mobiledevices_list— GET /admin/directory/v1/customer/{customerId}/devices/mobile — Retrieves a paginated list of all user-owned mobile devices for an account. To rdirectory_mobiledevices_get— GET /admin/directory/v1/customer/{customerId}/devices/mobile/{resourceId} — Retrieves a mobile device's properties.directory_orgunits_list— GET /admin/directory/v1/customer/{customerId}/orgunits — Retrieves a list of all organizational units for an account.
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: directory_chromeosdevices_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: directory_chromeosdevices_list, directory_chromeosdevices_get, admin_customer_devices_chromeos_commands_get, directory_mobiledevices_list, directory_mobiledevices_get, directory_orgunits_list |
commandId |
string | no | — | Path parameter commandId (required by some operations). |
customerId |
string | no | — | Path parameter customerId (required by some operations). |
deviceId |
string | no | — | Path parameter deviceId (required by some operations). |
resourceId |
string | no | — | Path parameter resourceId (required by some operations). |
query |
string | no | — | Optional query params as a JSON object string, e.g. {"limit": 10}. |