Send responses
Learn how to send full and partial responses to your server or Google Sheets.
Send full and partial responses to your server or Google Sheets
Set the #! post-url = {url}
setting to send form responses to that URL using a POST request. There's also an incredibly useful integration that lets you send responses directly to Google Sheets. Responses are sent to the {url}
when the user reaches the end slide.
Partial submissions are also supported. Add >> post
(case insensitive) to a slide to enable partial submission up to that slide, that is, when a user completes this slide and goes to the next one, all the form data up to that slide will be sent to the URL you set in the setting. Learn more about partial submissions.
Format of responses
Each response is sent as a JSON object where the names of form fields are the keys, and value is the input provided by the user. There are three other fields added automatically:
_rid
—unique ID of the response_submitted
—date and time when the response is submitted_end
—whether or not the user has reached the end or not (in case of partial submissions, this will not beTRUE
)
Take this example:
Here's an example response from this form:
Last updated