Googleapis Script
Googleapis Script is a connector for the Google Apps Script API, used to create, deploy, and manage scripts that automate Google Workspace and related services.
- Base URL:
https://script.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
script_processes_list— GET /v1/processes — List information about processes made by or on behalf of a user, such as processscript_processes_listscriptprocesses— GET /v1/processes:listScriptProcesses — List information about a script's executed processes, such as process type and cscript_projects_get— GET /v1/projects/{scriptId} — Gets a script project's metadata.script_projects_getcontent— GET /v1/projects/{scriptId}/content — Gets the content of the script project, including the code source and metadata fscript_projects_deployments_list— GET /v1/projects/{scriptId}/deployments — Lists the deployments of an Apps Script project.script_projects_deployments_get— GET /v1/projects/{scriptId}/deployments/{deploymentId} — Gets a deployment of an Apps Script project.
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: script_processes_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: script_processes_list, script_processes_listscriptprocesses, script_projects_get, script_projects_getcontent, script_projects_deployments_list, script_projects_deployments_get |
deploymentId |
string | no | — | Path parameter deploymentId (required by some operations). |
scriptId |
string | no | — | Path parameter scriptId (required by some operations). |
query |
string | no | — | Optional query params as a JSON object string, e.g. {"limit": 10}. |