Googleapis Reseller
Googleapis Reseller is a connector for the Google Workspace Reseller API, used to manage customer subscriptions and licenses for Google Workspace resellers.
- Base URL:
https://reseller.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
reseller_customers_get— GET /apps/reseller/v1/customers/{customerId} — Gets a customer account. Use this operation to see a customer account already inreseller_subscriptions_get— GET /apps/reseller/v1/customers/{customerId}/subscriptions/{subscriptionId} — Gets a specific subscription. ThesubscriptionIdcan be found using the [Retrireseller_resellernotify_getwatchdetails— GET /apps/reseller/v1/resellernotify/getwatchdetails — Returns all the details of the watch corresponding to the reseller.reseller_subscriptions_list— GET /apps/reseller/v1/subscriptions — Lists of subscriptions managed by the reseller. The list can be all subscriptionreseller_customers_insert— POST /apps/reseller/v1/customers — Orders a new customer's account. Before ordering a new customer account, establireseller_customers_update— PUT /apps/reseller/v1/customers/{customerId} — Updates a customer account's settings. You cannot updatecustomerTypevia the
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: reseller_customers_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: reseller_customers_get, reseller_subscriptions_get, reseller_resellernotify_getwatchdetails, reseller_subscriptions_list, reseller_customers_insert, reseller_customers_update |
customerId |
string | no | — | Path parameter customerId (required by some operations). |
subscriptionId |
string | no | — | Path parameter subscriptionId (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). |