Hi, I want to store information about the form inside the form. Specifically, I have a set of choice references, a subset of the form’s choice references, that I want to save with the TypeForm. The choice references are strings of about 30-40 characters.
The forms I’m working with have about 50-100 multiple choice questions. On form submission, I want to test for the presence in the response of the members of an arbitrary set/list of answer choices. So, say 80 MC questions, and 20 answers on my list that, if selected, require some special processing of the response. The actual processing I can do elsewhere, but I want to store the arbitrary list with the form.
What are my options for storing the set of references? I could use hidden variables, either one variable per reference string or somehow concatenate the strings, but then I get a long URL that is susceptible to user error. Twenty references, at 40 characters each, is 800 characters, and is long for a URL.
Can I just put the reference strings into the form’s JSON dictionary as the value to some custom field? Is there a preferred key for form-creator-defined values when creating forms with the form creator API? Are there any I should avoid, even if they are permitted by the form creation API?
Is this something that I’ll have to store externally and then tie to the form’s ID?
Thanks,
Richard