Skip to content
For LLMsView as Markdown·

Google Forms

Create, modify, and retrieve forms and responses via the Google Forms API.

DetailValue
CategoryProductivity
Base URLhttps://forms.googleapis.com/v1
AuthenticationOAuth2
Endpoints5
Connector keygoogle-forms

Using Google Forms in a workflow

  1. Go to Connections and click New Connection.
  2. Pick Google Forms from the marketplace.
  3. Enter your credentials (see Authentication above for what's expected).
  4. In a workflow, drop an API Call node and select this connection.
  5. Pick the operation you need from the Operation dropdown — the full list is below.

Available endpoints

EndpointSummary
POST /formsCreate a new form
GET /forms/{formId}Get a form
POST /forms/{formId}:batchUpdateBatch update form items
GET /forms/{formId}/responsesList 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

DetailValue
Operation IDproductivity.createForm
MethodPOST
Path/forms

Parameters

No parameters.

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your Google Forms connection from the Connection dropdown.
  3. In the Operation dropdown, select productivity.createForm.
  4. 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

DetailValue
Operation IDproductivity.getForm
MethodGET
Path/forms/{formId}

Parameters

NameLocationTypeRequired
formIdpathstringYes

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your Google Forms connection from the Connection dropdown.
  3. In the Operation dropdown, select productivity.getForm.
  4. 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

DetailValue
Operation IDproductivity.batchUpdateForm
MethodPOST
Path/forms/{formId}:batchUpdate

Parameters

NameLocationTypeRequired
formIdpathstringYes

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your Google Forms connection from the Connection dropdown.
  3. In the Operation dropdown, select productivity.batchUpdateForm.
  4. 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

DetailValue
Operation IDproductivity.listResponses
MethodGET
Path/forms/{formId}/responses

Parameters

NameLocationTypeRequired
formIdpathstringYes

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your Google Forms connection from the Connection dropdown.
  3. In the Operation dropdown, select productivity.listResponses.
  4. 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

DetailValue
Operation IDproductivity.getResponse
MethodGET
Path/forms/{formId}/responses/{responseId}

Parameters

NameLocationTypeRequired
formIdpathstringYes
responseIdpathstringYes

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your Google Forms connection from the Connection dropdown.
  3. In the Operation dropdown, select productivity.getResponse.
  4. 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.