By default, after submitting the form, NeetoForm takes you to the thank you page. But you can change this to link to any URL you like.
Visit the form.
Click on Settings tab.
Click on Thank you page card.
Click on the Redirect to external link option.
Add the link in the Link field.
Enable Pass submission details to your redirected page toggle (optional).
Enable Show message while redirecting (optional).
Click on Save changes.
What gets passed to the redirected page
On enabling Pass submission details to your redirected page, NeetoForm adds the submitter's answers to your link as query parameters. Each parameter is named after the question's Field code, along with a submissionId parameter holding the ID of the submission.
For example, for a form with an email question and a full name question, a link to https://my.example.com/welcome becomes:
https://my.example.com/welcome?email=oliver%40example.com&full_name=Oliver%20Smith
&submissionId=8f14e45f-ea6d-4d0a-9b17-2f3c1b2a5e77
The field code of a question is available under Advanced properties in the question's properties panel, and you can change it. Refer to Pre-filling form fields via URL parameters to know more about field codes.
You cannot choose which questions are passed. Answers are passed for Full name, Email, Phone number, Text input, Number, Date, Single choice, Multiple choice, Dropdown and Star rating questions. Other question types are not passed. Use a webhook if you need the complete submission.
A few things to note:
Questions the submitter did not answer are not passed.
Answers longer than 150 characters are cut short, with
...added at the end.The answers are visible in the address bar and the browser history of the submitter, so avoid using this for sensitive questions.