Appearance
Google Forms
Create, modify, and retrieve forms and responses via the Google Forms API.
| Detail | Value |
|---|---|
| Category | Productivity |
| Base URL | https://forms.googleapis.com/v1 |
| Authentication | OAuth2 |
| Endpoints | 5 |
| Connector key | google-forms |
Using Google Forms in a workflow
- Go to Connections and click New Connection.
- Pick Google Forms from the marketplace.
- Enter your credentials (see Authentication above for what's expected).
- In a workflow, drop an API Call node and select this connection.
- Pick the operation you need from the Operation dropdown — the full list is below.
Available endpoints
| Endpoint | Summary |
|---|---|
POST /forms | Create a new form |
GET /forms/{formId} | Get a form |
POST /forms/{formId}:batchUpdate | Batch update form items |
GET /forms/{formId}/responses | List form responses |
GET /forms/{formId}/responses/{responseId} | Get a form response |
Each endpoint is documented in full below. Use the outline on the right to jump to one.
POST /forms
Create a new form
| Detail | Value |
|---|---|
| Operation ID | productivity.createForm |
| Method | POST |
| Path | /forms |
Parameters
No parameters.
Using this endpoint in a workflow
- Add an API Call node to your workflow.
- Pick your Google Forms connection from the Connection dropdown.
- In the Operation dropdown, select
productivity.createForm. - Fill in the parameter fields that appear. Use
{{...}}to reference upstream values.
What it returns
The API Call node writes the response to the workflow context:
{
status: 200,
success: true,
data: { ...response body from the API... },
latencyMs: 142
}Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Google Forms API reference.
GET /forms/{formId}
Get a form
| Detail | Value |
|---|---|
| Operation ID | productivity.getForm |
| Method | GET |
| Path | /forms/{formId} |
Parameters
| Name | Location | Type | Required |
|---|---|---|---|
formId | path | string | Yes |
Using this endpoint in a workflow
- Add an API Call node to your workflow.
- Pick your Google Forms connection from the Connection dropdown.
- In the Operation dropdown, select
productivity.getForm. - Fill in the parameter fields that appear. Use
{{...}}to reference upstream values.
Required fields are marked — fill them or the call will fail at runtime.
What it returns
The API Call node writes the response to the workflow context:
{
status: 200,
success: true,
data: { ...response body from the API... },
latencyMs: 142
}Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Google Forms API reference.
POST /forms/{formId}:batchUpdate
Batch update form items
| Detail | Value |
|---|---|
| Operation ID | productivity.batchUpdateForm |
| Method | POST |
| Path | /forms/{formId}:batchUpdate |
Parameters
| Name | Location | Type | Required |
|---|---|---|---|
formId | path | string | Yes |
Using this endpoint in a workflow
- Add an API Call node to your workflow.
- Pick your Google Forms connection from the Connection dropdown.
- In the Operation dropdown, select
productivity.batchUpdateForm. - Fill in the parameter fields that appear. Use
{{...}}to reference upstream values.
Required fields are marked — fill them or the call will fail at runtime.
What it returns
The API Call node writes the response to the workflow context:
{
status: 200,
success: true,
data: { ...response body from the API... },
latencyMs: 142
}Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Google Forms API reference.
GET /forms/{formId}/responses
List form responses
| Detail | Value |
|---|---|
| Operation ID | productivity.listResponses |
| Method | GET |
| Path | /forms/{formId}/responses |
Parameters
| Name | Location | Type | Required |
|---|---|---|---|
formId | path | string | Yes |
Using this endpoint in a workflow
- Add an API Call node to your workflow.
- Pick your Google Forms connection from the Connection dropdown.
- In the Operation dropdown, select
productivity.listResponses. - Fill in the parameter fields that appear. Use
{{...}}to reference upstream values.
Required fields are marked — fill them or the call will fail at runtime.
What it returns
The API Call node writes the response to the workflow context:
{
status: 200,
success: true,
data: { ...response body from the API... },
latencyMs: 142
}Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Google Forms API reference.
GET /forms/{formId}/responses/{responseId}
Get a form response
| Detail | Value |
|---|---|
| Operation ID | productivity.getResponse |
| Method | GET |
| Path | /forms/{formId}/responses/{responseId} |
Parameters
| Name | Location | Type | Required |
|---|---|---|---|
formId | path | string | Yes |
responseId | path | string | Yes |
Using this endpoint in a workflow
- Add an API Call node to your workflow.
- Pick your Google Forms connection from the Connection dropdown.
- In the Operation dropdown, select
productivity.getResponse. - Fill in the parameter fields that appear. Use
{{...}}to reference upstream values.
Required fields are marked — fill them or the call will fail at runtime.
What it returns
The API Call node writes the response to the workflow context:
{
status: 200,
success: true,
data: { ...response body from the API... },
latencyMs: 142
}Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Google Forms API reference.