Qualaroo makes it easy to survey specific users in context while they are looking at your product, service & brand.
Go to siteUsing the Qualaroo API, you can build comprehensive customer feedback systems for your business or website. Qualaroo helps you discover the information you need from your customers, capture every detail and make changes to improve the customer experience. With Qualaroo, you can easily build surveys, polls, and other forms of customer feedback.
Examples of Things You Can Build Using the Qualaroo API:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
qualaroo: {
type: "app",
app: "qualaroo",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.qualaroo.com/api/v1/nudges/{survey_id}/responses.json`,
auth: {
username: `${this.qualaroo.$auth.api_key}`,
password: `${this.qualaroo.$auth.api_secret}`,
},
})
},
})
Qualaroo uses API keys for authentication. When you connect your Qualaroo account, Pipedream securely stores the keys so you can easily authenticate to Qualaroo APIs in both code and no-code steps.
You can get your API Key and Secret in your Qualaroo account page.