Overview
Google Forms covers form responses, structure, questions, watches. The Automize Forms connector covers these.
- Regions: Global.
- Plans: Free for Google account holders.
Setting up the connection
Auth type: OAuth 2.0 (Authorization Code).
- Google Cloud Console → Enable Forms API.
- OAuth client + scope forms.responses.readonly.
- In Automize → Settings → Connectors → Google Forms. Paste credentials.
Find your credentials at https://console.cloud.google.com/apis/credentials.
Rate limits
Per-project quotas.
Data model
Form primitives:
Form ─── Questions ─── Responses
└─ Watches (event subscriptions)Available operations
5 operations available. Click any row to jump to its detail.
| Operation | Category | What it does |
|---|---|---|
| Create Watch | General | Create a watch for form changes |
| Delete Watch | General | Delete a form watch |
| Get Form | General | Get form structure |
| Get Response | General | Get a single response |
| List Responses | General | List form responses |
Operations
Create Watch
Create a watch for form changes
| Parameter | Required | Type | Description |
|---|---|---|---|
Watch watch | Yes | text | |
Form Id form_id | Yes | text |
Tips
- Webhook on new responses. Push to Automize webhook URL.
Delete Watch
Delete a form watch
| Parameter | Required | Type | Description |
|---|---|---|---|
Form Id form_id | Yes | text | |
Watch Id watch_id | Yes | text |
Get Form
Get form structure
| Parameter | Required | Type | Description |
|---|---|---|---|
Form Id form_id | Yes | text |
Get Response
Get a single response
| Parameter | Required | Type | Description |
|---|---|---|---|
Form Id form_id | Yes | text | |
Response Id response_id | Yes | text |
Tips
- responseId. Full answers per question.
List Responses
List form responses
| Parameter | Required | Type | Description |
|---|---|---|---|
Form Id form_id | Yes | text |
Tips
- Per form. Filter by lastSubmittedTime.
FAQ
- Create forms via API?
- Limited – better to build in UI then read responses via API.