Getting started
Distribute and embed your UserSound surveys.
Introduction
These documents outline how you can distribute and embed your own UserSound surveys.
Quickstart
The two quickest ways to start distributing your UserSound surveys are:
- Sending via link (no-code)
- Web snippet embed
Sending via link
The simplest no-code way to distribute your survey is to head to your dashboard:
- Log in to UserSound
- Go to your project dashboard for the UserSound you want to share
- Click the link icon to copy your UserSound survey link. It will look something like this:
https://usersound.com/survey/df60dd74-b301-4ae5-9cde-968c31f28cc2/
You can share this link with your participants however you usually communicate with your customers: email, social media, or customer service tools such as Intercom. Anyone who clicks the link will be redirected to usersound.com to complete the survey.
Web snippet embed
The simplest way to embed UserSound directly within your web application is with our web snippet.
- Log in to UserSound
- Go to your project dashboard for the UserSound you want to embed
- Go to Setup > Widget Settings
- Check Restricted and Web
- Enter your website's domain
- Save and exit
- Click the embed icon and copy and paste the code before your page's closing
</head>tag.
You should now see a floating widget in the bottom right-hand side of your website.
<script src="https://cdn.jsdelivr.net/npm/@usersound/usersound-sdk/dist/usersound.browser.min.js"></script>
<script>
UserSound.init({
baseUrl: "https://usersound.com",
projectId: "your-project-uuid", // IMPORTANT: replace with your actual project ID
});
UserSound.create({});
</script>
Next steps
Learn how to identify users, handle completion states, and customise embeds in Embedding UserSound.