Discord Bot

Use this app to interact with the Discord API using a bot in your account

Integrate the Discord Bot API with the Verifalia API

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

Delete Email Verification Job with Verifalia API on New Message in Channel from Discord Bot API
Discord Bot + Verifalia
 
Try it
Get Credits Balance with Verifalia API on New Message in Channel from Discord Bot API
Discord Bot + Verifalia
 
Try it
Verify Email Address with Verifalia API on New Message in Channel from Discord Bot API
Discord Bot + Verifalia
 
Try it
Verify List of Email Address with Verifalia API on New Message in Channel from Discord Bot API
Discord Bot + Verifalia
 
Try it
Delete Email Verification Job with Verifalia API on New Forum Thread Message from Discord Bot API
Discord Bot + Verifalia
 
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 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
New Thread Message from the Discord Bot API

Emit new event for each thread message posted.

 
Try it
Delete Email Verification Job with the Verifalia API

Delete a previously submitted email verification job. See the docs for more information

 
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
Get Credits Balance with the Verifalia API

Get the number of credit packs and free daily credits available to the account. See the docs for more information

 
Try it
Change Nickname with the Discord Bot API

Modifies the nickname of the current user in a guild.

 
Try it
Verify Email Address with the Verifalia API

Verify an email address and check if it is properly formatted, really exists and can accept mails, flagging spam traps, disposable emails and much more. See the docs for more information

 
Try it

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

Overview of Verifalia

The Verifalia API is a powerful and secure suite of tools designed to validate
& clean data and email addresses. It can be used to help reduce fraud, improve
data quality, and boost marketing campaigns.

Verifalia's API can be used to build the following:

  • Email Validation: Validate a list of email addresses and check for accuracy,
    validity, and deliverability.
  • Email Address Hygiene & Cleaning: Automatically clean a list of email
    addresses to remove duplicates, typos, and invalid addresses.
  • Email Address List Verification: Check a list of email addresses and verify
    them against a specific domain.
  • Email Spam Score & Analysis: Analyze a list of emails and determine the
    associated spam level.
  • Phone Number Validation: Automatically validate a list of phone numbers and
    check for accuracy and improper formatting.
  • Bulk Email Sending: Execute a bulk email campaign and track email delivery
    rate in real-time.
  • Private DNS Check & Domain Name Verification: Check a domain's reliability
    and identity, as well as DNS records and MX records.
  • Domain Catch-all Check & Delivery Confirmation: Determine if a domain is
    flagged as a catch-all and confirm if emails sent to that domain will be
    received by the intended recipient.

Connect Verifalia

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import { VerifaliaRestClient } from "verifalia"
export default defineComponent({
  props: {
    verifalia: {
      type: "app",
      app: "verifalia",
    }
  },
  async run({steps, $}) {
    const verifaliaClient = new VerifaliaRestClient({
    	username: this.verifalia.$auth.username,
    	password: this.verifalia.$auth.password
    });

    return await verifaliaClient
    	.emailValidations
    	.submit('batman@gmail.com', true);
  },
})