Googleapis Forms
Google Forms API is a Google Workspace API for creating, reading, and managing Google Forms and their responses.
- Base URL:
https://forms.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
forms_forms_get— GET /v1/forms/{formId} — Get a form.forms_forms_responses_list— GET /v1/forms/{formId}/responses — List a form's responses.forms_forms_responses_get— GET /v1/forms/{formId}/responses/{responseId} — Get one response from the form.forms_forms_watches_list— GET /v1/forms/{formId}/watches — Return a list of the watches owned by the invoking project. The maximum number oforms_forms_create— POST /v1/forms — Create a new form using the title given in the provided form message in the requforms_forms_watches_create— POST /v1/forms/{formId}/watches — Create a new watch. If a watch ID is provided, it must be unused. For each invok
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: forms_forms_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: forms_forms_get, forms_forms_responses_list, forms_forms_responses_get, forms_forms_watches_list, forms_forms_create, forms_forms_watches_create |
formId |
string | no | — | Path parameter formId (required by some operations). |
responseId |
string | no | — | Path parameter responseId (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). |