WisePops

WisePops is a web application that helps you design smart pop-ups for your website, and increase sign ups and conversions

Integrate the WisePops API with the Discord Bot API

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

Add Role with Discord Bot API on New Phone Collected (Instant) from WisePops API
WisePops + Discord Bot
 
Try it
Add Role with Discord Bot API on New Sign-Up Collected (Instant) from WisePops API
WisePops + Discord Bot
 
Try it
Add Role with Discord Bot API on New Survey Collected (Instant) from WisePops API
WisePops + Discord Bot
 
Try it
Change Nickname with Discord Bot API on New Phone Collected (Instant) from WisePops API
WisePops + Discord Bot
 
Try it
Change Nickname with Discord Bot API on New Sign-Up Collected (Instant) from WisePops API
WisePops + Discord Bot
 
Try it
New Phone Collected (Instant) from the WisePops API

Emit new event when a new phone is received

 
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 Sign-Up Collected (Instant) from the WisePops API

Emit new event when a new sign-up is received

 
Try it
New Survey Collected (Instant) from the WisePops API

Emit new event when a new survey 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
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 WisePops

WisePops' API allows webmasters and developers to easily create, deploy, and
manage powerful dynamic popups and surveys.

Using the WisePops API, you can build a variety of rich interactive experiences
that increase user engagement and generate leads. Here are just some examples
of the types of popups and surveys you can build:

  • Email Capture Popups
  • Abandoned Cart Popups
  • Exit Intent Popups
  • Quiz Popups
  • Inline Forms
  • Polls
  • Onboarding Surveys
  • Rating & Feedback Forms
  • Outcome-Based Survey
  • User Satisfaction Surveys

Connect WisePops

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: {
    wisepops: {
      type: "app",
      app: "wisepops",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://app.wisepops.com/api2/contacts`,
      headers: {
        "Authorization": `WISEPOPS-API key="${this.wisepops.$auth.api_key}"`,
      },
    })
  },
})

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}`,
      },
    })
  },
})