Googleapis Forms
Connector for the googleapis-forms API, generated deterministically from its OpenAPI spec (endpoints, auth, and methods match the spec exactly — nothing is invented).
- 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)