0

Working on Integrating a SurveyMonkey Survey into a website. How do I pass Username or Email of a Logged in User to the Survey? I am using an Embedded Survey. Any Documentation Links would be welcome.

Also, Can I get real-time Response from SurveyMonkey to get the results after a user has finished the taking survey? I have a Paid Plan.

Using Django to build the website.

Gokul
  • 68
  • 1
  • 10

1 Answers1

1

There is no way to do this today with the SurveyMonkey embed code. Create a weblink collector instead and insert the URL with custom variables into and iframe in your HTML.

Example:

<iframe src="https://www.surveymonkey.com/r/BGNV5MY?username=[username_value]&email=[email_value]"></iframe>

For realtime response notifications, use webhooks to get notified and then fetch the response details.

Adam Klockars
  • 301
  • 1
  • 3