Is it possible to set the default for all new questions to be required? It’s tedious (and error-prone) to have to go through every question and click it. I appreciate that it’s not recommended, but the sort of recruitment surveys that we do are useless if they haven’t answered every question, so I’d rather be able to apply that as the default and turn off if needed.
Answered
Make questions required by default
Best answer by jeremielp
I am not sure that you can do it with the user interface, but if not, you can do that with the Create API.
1. Retrieve forms with
GET https://api.typeform.com/forms
https://www.typeform.com/developers/create/reference/retrieve-form/
2. Retrieve each form with
GET https://api.typeform.com/forms/{form_id}
https://www.typeform.com/developers/create/reference/retrieve-form/
3. Check if one field is not required in the form
4. Update the form to mark the field as required with
PUT https://api.typeform.com/forms/{form_id}
https://www.typeform.com/developers/create/reference/update-form/
.
Reply
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.