Distribute Survey - Questionstar

Distribute Survey

QUESTIONSTAR offers several ways to deliver your survey to the respondents:

  1. Send your survey to your customer base via our Mailing service (after uploading relevant contact data to our platform)
  2. Send links to your survey by email or via messengers or post it on a given page.
  3. Post a link to your survey on social media.
  4. Post a QR code on a website or print it.
  5. Publish the survey on your website by embedding it into a webpage
  6. Post a pop-up survey on your website

Option 1 is the only one that allows using personal links. In all other cases, you will not be able to learn the respondent’s identity.

You can go to the Distribution Editor by clicking on Distribution at the top or on your right, depending on the screen you are currently using.

Distribute the Link

After clicking on Share Link, you will see a window with the following link:

You can adjust this link to suit your goals by adding custom parameters. Please read this if you want to add an extra ID parameter for the channel you are using to distribute your survey: survey.questionstar.ru/541231?channel_name=email and survey.questionstar.ru/541231?channel_name=messenger.

You can use any name for this parameter (channel_name in our example). The parameter and its value will be transmitted and automatically stored in the database. If you want your respondents to go to another address, for example, your corporate website after completing the survey, this parameter and its value will be automatically added to the redirect link. During survey analysis, you can also filter your results by this parameter.

You can also use UTM tags for your links.

Another option is to create an alias for your survey that will look as follows: survey.questionstar.ru/anysimbols123 (you may use Latin letters, numbers, and symbols $-_.+!*'() ). You can choose any name if it has not been taken by other users.

Posts on Social Media

When you publish your survey on social media, a standard posting window will be shown. Please note that you will not be able to learn the respondent’s identity when you post your survey on social media.

QR Code

If you post a QR code on your webpage or printed media, you won’t need to send out any links to your survey since all users with smartphones can scan this code and go straight to the first page of your survey:

 

Embedding the Survey on Your Website

You can use iframe tag to embed your survey. To do this, you need to insert a special code (below) on the relevant page.

Embedded survey example:

https://survey.questionstar.com/iframe_demo

Width and height can be customized in line with your requirements to visual design.

 

<div id=”qs-embed-survey”></div>
<script src=”https://app.questionstar.com/embed.js”></script>
<script>
new QS.Embed({
url: ‘https://survey.questionstar.com/iframe_demo’, // url to the survey
saveParentURL: true, // save the current page URL in the saved data
height: 600,
autoHeight: true,
minHeight: 100,
maxHeight: 650,
}).render(‘#qs-embed-survey’);

</script>



Posting a Pop-up Survey on Your Website

You may also opt to post a pop-up survey on your website; a user will see a new pop-up window with questions after clicking on a given link or after spending certain time on your website. Just like with embedded survey, you need to use a special code:

<script src=”https://app.questionstar.com/embed.js”></script>
<script>
QS.embed.init({
url: ‘https://survey.questionstar.com/iframe_demo’, // your survey
preload: false, // preload iframe?
closeOnEnd: true, // close the modal when the respondent has finished the survey?
disableDocumentScroll: true, // disable scrolling of the main document when the survey modal is open?
legacyMode: true, // support for IE < v11 ?
autoHeight: false,
});
/*
// available methods and event handlers:
QS.embed.open(); // open modal
QS.embed.close(); // close modal
QS.embed.on(‘survey-end’, fn); // call fn when respondent has finished the survey
QS.embed.on(‘modal-close’, fn); // call fn when respondent has closed the modal (or automatically closed when closeOnEnd=true)
QS.embed.off(‘survey-end’, fn); // remove event handler
QS.embed.off(‘modal-close’, fn); // remove event handler
setTimeout(function(){QS.embed.open();}, 3000); // auto open after 3000 msec
*/


click to open

Please note that your website style may require some nuanced tuning for the new window. You may have to use web programming, so we recommend asking your IT team for help. Our corporate clients on the Standard plan or higher can turn to us for help with integrating their surveys.