I have a list of customers, and I created hidden fields in the link. How can I limit the link so that only the customers who were sent the link can view it? Any changes to the information in the hidden fields will be redirected to a predefined ending screen for that case
Example:
- You have a list of customers with unique codes:
["ABC123", "DEF456", "GHI789"]
. You create a Typeform form with a Hidden Field named “unique_code”. You share the form with each customer by appending their unique code to the URL, like this:https://yourtypeform.typeform.com/to/abc123?unique_code=ABC123
. - You set up a Logic Jump in your Typeform form that checks the value of the Hidden Field “unique_code”. If the value does not match any of the unique codes in your list, the respondent is taken directly to the end of the form and cannot see or submit any responses.
- A customer tries to access your Typeform form by changing the value of the
unique_code
query parameter in the URL. For example, they change it tohttps://yourtypeform.typeform.com/to/abc123?unique_code=XYZ789
. Since “XYZ789” is not in your list of unique codes, they are taken directly to the end of the form and cannot see or submit any responses.
Currently, I only see redirects to question screens