Slack Bot

Interact with Slack with your own bot user

Integrate the Slack Bot API with the Discord API

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

Archive Channel with Slack Bot API on New Message (Instant) from Discord API
Discord + Slack Bot
 
Try it
Create a Channel with Slack Bot API on New Message (Instant) from Discord API
Discord + Slack Bot
 
Try it
Delete File with Slack Bot API on New Message (Instant) from Discord API
Discord + Slack Bot
 
Try it
Delete Message with Slack Bot API on New Message (Instant) from Discord API
Discord + Slack Bot
 
Try it
Find User by Email with Slack Bot API on New Message (Instant) from Discord API
Discord + Slack Bot
 
Try it
New Message (Instant) from the Discord API

Emit new event for each message posted to one or more channels in a Discord server

 
Try it
Message Deleted (Instant) from the Discord API

Emit new event for each message deleted

 
Try it
New Command Received (Instant) from the Discord API

Emit new event for each command posted to one or more channels in a Discord server

 
Try it
New Guild Member (Instant) from the Discord API

Emit new event for each new member added to a guild

 
Try it
Reaction Added (Instant) from the Discord API

Emit new event for each reaction added to a message

 
Try it
Archive Channel with the Slack Bot API

Archive a channel (Bot). See docs here

 
Try it
Create a Channel with the Slack Bot API

Create a new channel (Bot). See docs here

 
Try it
Delete File with the Slack Bot API

Delete a file (Bot). See docs here

 
Try it
Delete Message with the Slack Bot API

Delete a message (Bot). See docs here

 
Try it
Find User by Email with the Slack Bot API

Find a user by matching against their email (Bot). See docs here

 
Try it

Overview of Slack Bot

Slack Bot APIs offer powerful and flexible ways to automate repetitive tasks
and integrate workflows from various services. With the help of these APIs, it
is possible to develop Slack bots capable of exiting and entering specific
channels as well as performing various actions requested from users.

A Slack bot can be used to automate specific tasks and carry out routine admin
jobs such as checking the team’s working time, organizing team meetings,
managing customer inquiries and so on. These bots can be programmed to inform
the members of the team when tasks are completed. Some of the examples of what
you can create using the Slack Bot APIs are:

  • Automated reminders
  • Productivity and time tracking
  • Data analysis and processing
  • Internal communication releases
  • Integrations with external tools and services
  • Conversation and inquiry management
  • Automation of customer service
  • Scheduling and tracking of tasks
  • Personalised customer recommendations

Connect Slack Bot

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: {
    slack_bot: {
      type: "app",
      app: "slack_bot",
    },
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://slack.com/api/auth.test`,
      headers: {
        Authorization: `Bearer ${this.slack_bot.$auth.bot_token}`,
      },
      method: 'post',
    })
  },
})

Overview of Discord

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

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: {
    discord: {
      type: "app",
      app: "discord",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://discord.com/api/users/@me`,
      headers: {
        Authorization: `Bearer ${this.discord.$auth.oauth_access_token}`,
        "accept": `application/json`,
      },
    })
  },
})