Returns all submitted responses to the form.
class FormApp method .getResponses()
FormApp is the Apps Script service.
.getResponses() is the method name you will see after a dot in your code.
What it does
Why it's used
- Pull every submission into a report or cleanup job.
- Process new answers on a schedule instead of on each submit.
Common errors
- Forgetting parentheses on getResponses. Write FormApp.getResponses(), not FormApp.getResponses or getResponses by itself.
- Skipping dots between chained calls. Each step needs a dot, like FormApp.getResponses().
- Adding spaces where they do not belong. Write FormApp.getResponses(), not FormApp .getResponses(), FormApp.getResponses (), or FormApp . getResponses().
- Wrong capitalization. Use FormApp and getResponses, not formapp or getresponses.
Explore
Related methods
-
.setDestination()
Sends new form responses to a spreadsheet.
-
.getPublishedUrl()
Returns the public link respondents use to fill out the form.
-
.getActiveForm()
Returns the form the user currently has open.
-
.addTextItem()
Adds a short-answer text question to the form.
-
.addMultipleChoiceItem()
Adds a multiple-choice question to the form.
More Apps Script
Better Sheets tutorials
No tagged tutorials yet. Fetch Apps Script from the harvest table and this page fills automatically.
Related blog posts
Written guides about FormApp.getResponses().
How to Send Google Forms Entries Automatically with Apps Script
Google Forms provides basic email notifications for form submissions, but enhancing these notifications with detailed summaries can significantly improve productivity and response management.
Read post →How to Validate Email Addresses for FREE in 17 Minutes
How to Validate Email Addresses. Up to 1,000 free email validations per month. Using a free API and Google Sheets.
Read post →