TriggerGoogle FormsReal-timeUpdated June 2026

When does Google Forms fire on new responses?

Short answer: In TinyCommand, add the Google Forms Google Forms Response Submitted trigger to a workflow and publish. It listens through a Google Forms webhook and fires your workflow within seconds of the event, with no polling and no code. Add a filter if you only want some events to start a run.

Trigger workflows on Google Forms Response Submitted in Google Forms — start free
Anatomy

What this trigger looks like in a workflow.

Drop it on the canvas. Configure a couple of fields. Publish.

In the builder
Trigger
Google Forms Response Submitted
When the matching event happens
new responseform submittedwhen a new response is submitted to a google formnew form submissionwatch for responseon form responsewhen response submittedsurvey answered
What this trigger returns
for the curious

You don’t need to read this. TinyCommand auto-maps every field into the visual picker so downstream nodes can pull values by clicking. We show it here for power users who want to know what’s on the wire.

{
"answers": {
"1e2f3g4h": {
"questionId": "1e2f3g4h",
"textAnswers": {
"answers": [
{
"value": "5"
}
]
}
}
},
"createTime": "2026-04-20T14:30:00Z",
"responseId": "ACYDBNh1abc123",
"respondentEmail": "respondent@example.com"
}
Output shape

Fields available to downstream nodes.

Every field below can be referenced by name in any action or filter that comes after this trigger.

FieldTypeExample
answersobject{ … }
answers.1e2f3g4hobject{ … }
answers.1e2f3g4h.questionIdstring"1e2f3g4h"
answers.1e2f3g4h.textAnswersobject{ … }
answers.1e2f3g4h.textAnswers.answersarray[{"value":"5"}]
createTimestring"2026-04-20T14:30:00Z"
responseIdstring"ACYDBNh1abc123"
respondentEmailstring"respondent@example.com"
FAQ

Questions about Google Forms Response Submitted.

How does the Google Forms Response Submitted trigger work in Google Forms?
Fires when someone submits a form response. Payload includes the responseId, timestamp, and answers keyed by question ID. The base hook for "lead form → push to CRM" or "support form → create ticket" workflows.
Is the Google Forms Response Submitted trigger real-time?
Yes. Google Forms Response Submitted uses webhooks or push subscriptions, not polling. Your workflow fires within seconds of the event happening in Google Forms.
What data does Google Forms Response Submitted return?
The full event payload from Google Forms. The output shape table on this page lists every field, its type, and an example value so you can map fields into downstream nodes.
Can I filter Google Forms Response Submitted so only some events start a workflow?
Yes. Add a Filter node right after the trigger and match on any field, whether that's subject, sender, status, or anything else in the payload. Workflows only continue when the filter passes.
Do I need Google Forms admin permissions to use Google Forms Response Submitted?
For most Google Forms accounts a standard user can authorize the trigger. Some Google Forms plans require an admin to enable third-party webhooks. Check Google Forms's docs if the trigger fails to register.
Trigger workflows on Google Forms Response Submitted in Google Forms — start free