Hello,
We are looking for this action. We want to redirect users after completing form, to another form.
Questions, is it possible to pass unique Typeform Token which was assigned to first form by Typeform and pass it as hidden field to another form? This must happen instantly, user submits the form and redirected to the new form as if it is next step, next questionnaire?
Given Typeform Stripe/Google Tagmanager can not be used together we want to move payments outside to another form, but we need unique identifier to make sure to match respones. Email, Phone doesnt work as this factor, since clients may submit multiple forms, and thus they must be uniquely identified.
Thanks
Answered
Pass Token to From first form to Form
Best answer by mathio-tf
Yes, something like this:
<div data-tf-widget="<id>" data-tf-on-submit="didSubmit"></div>
<script src="//embed.typeform.com/next/embed.js"></script>
<script>
function didSubmit(data) {
window.location.href = "http://example.com?responseId=" + data.responseId
}
</script>
Please use responseId
from the payload as response_id
is the old name.
Reply
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.