Discord Bot

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

Integrate the Discord Bot API with the Woodpecker.co API

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

Create Or Update Prospect In Campaign with Woodpecker.co API on New Message in Channel from Discord Bot API
Discord Bot + Woodpecker.co
 
Try it
Create Or Update Prospect with Woodpecker.co API on New Message in Channel from Discord Bot API
Discord Bot + Woodpecker.co
 
Try it
Find Prospect's email with Woodpecker.co API on New Message in Channel from Discord Bot API
Discord Bot + Woodpecker.co
 
Try it
Stop Follow-Ups with Woodpecker.co API on New Message in Channel from Discord Bot API
Discord Bot + Woodpecker.co
 
Try it
Add Role with Discord Bot API on New Email Opened (Instant) from Woodpecker.co API
Woodpecker.co + Discord Bot
 
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 Email Opened (Instant) from the Woodpecker.co API

Emit new event when an email is opened see the docs here

 
Try it
New Email Sent (Instant) from the Woodpecker.co API

Emit new event when an email is sent see the docs here

 
Try it
New Follow-up After Autoreply (Instant) from the Woodpecker.co API

Emit new event when you get an autoreply and you set a date to resume follow-ups see the docs here

 
Try it
New Link Clicked (Instant) from the Woodpecker.co API

Emit new event when a prospect clicks on a link in your email see the docs here

 
Try it
Create Or Update Prospect with the Woodpecker.co API

This action creates/updates a prospect. 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
Create Or Update Prospect In Campaign with the Woodpecker.co API

This action creates/updates a prospect in a campaign. 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
Find Prospect's email with the Woodpecker.co API

This action searches a specific prospect. See the docs here

 
Try it

Overview of Discord Bot

The Discord Bot API unlocks the power to interact with Discord users and channels programmatically, making it possible to automate messages, manage servers, and integrate with other services. With Pipedream's serverless platform, you can create complex workflows that respond to events in Discord, process data, and trigger actions in other apps. This opens up opportunities for community engagement, content moderation, analytics, and more, without the overhead of managing infrastructure.

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 Woodpecker.co

The Woodpecker.co API lets you automate your email outreach and follow-up processes. With it, you can manage contacts, campaigns, and emails programmatically, creating a seamless bridge between your email campaigns and your data. This API, integrated with Pipedream, unlocks powerful workflows that can save time, personalize communication at scale, and keep your data in sync across various platforms.

Connect Woodpecker.co

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: {
    woodpecker_co: {
      type: "app",
      app: "woodpecker_co",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.woodpecker.co/rest/v1/campaign_list`,
      auth: {
        username: `${this.woodpecker_co.$auth.api_key}`,
        password: ``,
      },
    })
  },
})