Qualaroo

Qualaroo makes it easy to survey specific users in context while they are looking at your product, service & brand.

Integrate the Qualaroo API with the Discord Bot API

Setup the Qualaroo API trigger to run a workflow which integrates with the Discord Bot API. Pipedream's integration platform allows you to integrate Qualaroo and Discord Bot remarkably fast. Free for developers.

Add Role with Discord Bot API on New Survey Created from Qualaroo API
Qualaroo + Discord Bot
 
Try it
Add Role with Discord Bot API on New Survey Response Received from Qualaroo API
Qualaroo + Discord Bot
 
Try it
Change Nickname with Discord Bot API on New Survey Created from Qualaroo API
Qualaroo + Discord Bot
 
Try it
Change Nickname with Discord Bot API on New Survey Response Received from Qualaroo API
Qualaroo + Discord Bot
 
Try it
Create Channel Invite with Discord Bot API on New Survey Created from Qualaroo API
Qualaroo + Discord Bot
 
Try it
New Survey Created from the Qualaroo API

Emit new event when a survey is created.

 
Try it
New Message in Channel from the Discord Bot API

Emit new event for each message posted to one or more channels

 
Try it
New Survey Response Received from the Qualaroo API

Emit new event when a survey response is received.

 
Try it
New Forum Thread Message from the Discord Bot API

Emit new event for each forum thread message posted. Note that your bot must have the MESSAGE_CONTENT privilege intent to see the message content, see the docs here.

 
Try it
New Guild Member from the Discord Bot API

Emit new event for every member added to a guild. See docs here

 
Try it
Add Role with the Discord Bot API

Assign a role to a user. Remember that your bot requires the MANAGE_ROLES permission. See the docs here

 
Try it
Change Nickname with the Discord Bot API

Modifies the nickname of the current user in a guild.

 
Try it
Create Channel Invite with the Discord Bot API

Create a new invite for the channel. See the docs here

 
Try it
Create Guild Channel with the Discord Bot API

Create a new channel for the guild. See the docs here

 
Try it
Delete Channel with the Discord Bot API

Delete a Channel.

 
Try it

Overview of Qualaroo

Using 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:

  • Surveys to measure customer satisfaction
  • Polls to quickly collect opinions
  • Gather in-depth customer insights
  • Create targeted questions for different customers
  • Capture customer feedback and analyze it in real-time
  • Customize text and coding to create surveys and polls
  • Deliver survey results to your development team
  • Integrate surveys into your website or mobile app

Connect Qualaroo

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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}`,
      },
    })
  },
})

Overview of Discord Bot

The Pipedream Discord app enables you to build event-driven workflows that interact with the Discord API. When you authorize the Pipedream app's access to your guilds, you can use Pipedream workflows to perform common Discord actions, or write your own code against the Discord API.

Connect Discord Bot

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    discord_bot: {
      type: "app",
      app: "discord_bot",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://discord.com/api/users/@me`,
      headers: {
        "Authorization": `Bot ${this.discord_bot.$auth.bot_token}`,
      },
    })
  },
})