Questions tagged [google-forms-api]

User for questions about using the Google Forms REST API

User for questions about using the Google Forms REST API. Do not confuse with the Forms Service (Class FormApp) from Google Apps Script.

Documentation

Related tags:

  • : Use this as a more general tag. Don't use together for questions about using the Forms Service (FormApp) from Google Apps Script.
  • : Use together with this tag for questions about using Google Apps Script and the Google Forms REST API. Don't use together for questions about using the Forms Service (FormApp).
  • : Google Forms are stored in Google Drive. Use this tag for questions about deleting and changing access settings of Google Forms.
64 questions
44
votes
5 answers

Google Form API?

I would like to (programmatically) convert a text file with questions to a Google form. I want to specify the questions and the questiontypes and their options. Example: the questiontype scale should go from 1 to 7 and should have the label 'not…
Cie6ohpa
  • 815
  • 1
  • 10
  • 13
4
votes
3 answers

Can you submit a Restful request to a google forms api?

I want to use google forms to collect questionnaire responses but with a much more custom UI for doing so. Is there a way to send in responses from my custom application to my google forms api?
user2167582
  • 5,986
  • 13
  • 64
  • 121
3
votes
1 answer

How can I track Google Forms responses without requiring manual email submission?

Pretext: I am very new to programming and google api. I'm currently working on a project where I need to track the sending and submission receiving of each respondent of a Google Form. The challenge is that I don't want to make the respondents…
3
votes
1 answer

Google-Drive-API File not found using FORM_ID

I'm a novice Python hobbyist programmer who is trying to automate some vocabulary tests for my students. Everything in the below code works except for sharing it with the list of emails. I know for a fact that the Drive ID is the same as the Forms…
Mikitz06
  • 340
  • 3
  • 14
2
votes
1 answer

How to store google form responses into multiple spreadsheets?

I am trying to store google from response into multiple spread sheets, tries "IMPORTRANGE" but it does not actually copies the cell data, but instead creates a reference for the same. What I want is whenever there is new response on google sheets,…
2
votes
2 answers

Generate itemId when batchUpdating with Forms API

Please what are the constraints in generating an itemId. I generate unique itemId for each item in the form, but the API keeps telling me invalid ID. https://developers.google.com/forms/api/reference/rest/v1/forms#Item Please I need help with…
Nathaniel Babalola
  • 617
  • 2
  • 6
  • 15
2
votes
0 answers

Create Watch: Project does not have necessary OAuth permissions from authorizing user. FAILED_PRECONDITION

Problem statement with error I'm able to create a Google Form using the Google Forms API, but I can't get the submitted form responses to notify my PubSub topic. After creating the form, I'm attempting to create the watch but I get the following…
2
votes
1 answer

Google form API using service account

I am using Google Forms API to get form responses using service account. package com.form.api.poc; import java.io.IOException; import java.security.GeneralSecurityException; import java.util.Arrays; import java.util.Objects; import…
2
votes
1 answer

Google Form Api. Adding Response validation to textQuestion

Currently, AFAIK, when performing google form batchUpdate using the google forms API v1, we are only able to set the shuffle property of choiceQuestions, while for textQuestions there are no options to set the response validations, like if I want to…
Marlon Dumal-is
  • 300
  • 2
  • 13
2
votes
1 answer

Using Google Forms inside Android Application

I am a bit confused as of how to access Google Forms Api inside Android App. I would like to access users Google Forms, create Google Form, send answers to Google Form, from inside my Android Application. I can find it on API list…
1
vote
1 answer

Write Google Form Dynamic Content Before Submitting

I've been trying to search for this answer and I feel like I keep bumping up against it but can't break through. I'm building a Google Form for a non-profit. Part of it involves filling out multiple fields where you can agree to a donation to…
1
vote
0 answers

Is there a way to enhance security in Google Forms by automatically replacing answers with asterisks or dots?

Good day. I created a section in google form and their enter the password before entering the whole form. Its possible to autoreplace the password their enter to asterisk or dot? My reason I dont want to show the details answer in password section.…
1
vote
1 answer

Create google form response through API

In AppScript, I wrote this snippet of code to create a google form response, and get the edit link: function createResponseTest() { var test_form = FormApp.create('test-form').setAllowResponseEdits(true); // Add a required item …
1
vote
0 answers

Google forms API always returns 401 even when provided a valid access token

I'm trying to create an app where a user can log in using their google account, and I request the scope for forms access, so that if they have a google form they put out, they can give me the formId.. and I will be able to get access to the forms…
1
vote
2 answers

Determine Google Form question reference to Google Sheet column

Problem: I have a Google Form with duplicate question titles. I want to ingest the data from my spreadsheet into my own personal database. I need to build a mapping from Google Form Question to Google Sheet Column so that I can set the response…
1
2 3 4 5