Googleapis Licensing
Googleapis Licensing is a connector for the Google Workspace Licensing API, which manages user licenses for Google Workspace services.
- Base URL:
https://licensing.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
licensing_licenseassignments_get— GET /apps/licensing/v1/product/{productId}/sku/{skuId}/user/{userId} — Get a specific user's license by product SKU.licensing_licenseassignments_listforproductandsk— GET /apps/licensing/v1/product/{productId}/sku/{skuId}/users — List all users assigned licenses for a specific product SKU.licensing_licenseassignments_listforproduct— GET /apps/licensing/v1/product/{productId}/users — List all users assigned licenses for a specific product SKU.licensing_licenseassignments_insert— POST /apps/licensing/v1/product/{productId}/sku/{skuId}/user — Assign a license.licensing_licenseassignments_update— PUT /apps/licensing/v1/product/{productId}/sku/{skuId}/user/{userId} — Reassign a user's product SKU with a different SKU in the same product.licensing_licenseassignments_delete— DELETE /apps/licensing/v1/product/{productId}/sku/{skuId}/user/{userId} — Revoke a license.
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: licensing_licenseassignments_get
# (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: licensing_licenseassignments_get, licensing_licenseassignments_listforproductandsk, licensing_licenseassignments_listforproduct, licensing_licenseassignments_insert, licensing_licenseassignments_update, licensing_licenseassignments_delete |
productId |
string | no | — | Path parameter productId (required by some operations). |
skuId |
string | no | — | Path parameter skuId (required by some operations). |
userId |
string | no | — | Path parameter userId (required by some operations). |
query |
string | no | — | Optional query params as a JSON object string, e.g. {"limit": 10}. |
body |
string | no | — | Request body as a JSON object string (for create/update operations). |