Discord Bot

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

Integrate the Discord Bot API with the monday.com API

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

Create an Update with monday.com API on New Message in Channel from Discord Bot API
Discord Bot + monday.com
 
Try it
Create Board with monday.com API on New Message in Channel from Discord Bot API
Discord Bot + monday.com
 
Try it
Create Column with monday.com API on New Message in Channel from Discord Bot API
Discord Bot + monday.com
 
Try it
Create Group with monday.com API on New Message in Channel from Discord Bot API
Discord Bot + monday.com
 
Try it
Create Item with monday.com API on New Message in Channel from Discord Bot API
Discord Bot + monday.com
 
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 Board from the monday.com API

Emit new event when a new board is created in Monday.

 
Try it
New Column Value Updated (Instant) from the monday.com API

Emit new event when a column value is updated on a board in Monday. For changes to Name, use the Name Updated Trigger.

 
Try it
New Item (Instant) from the monday.com API

Emit new event when a new item is added to a board in Monday.

 
Try it
New Name Updated (Instant) from the monday.com API

Emit new event when an item's Name is updated on a board in Monday.

 
Try it
Create an Update with the monday.com API

Creates a new update. See the documentation

 
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 Board with the monday.com API

Creates a new board. See the documentation

 
Try it
Change Nickname with the Discord Bot API

Modifies the nickname of the current user in a guild.

 
Try it
Create Column with the monday.com API

Creates a column. See the documentation

 
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 monday.com

With the monday.com API you can build a variety of applications and
integrations. Some examples include:

  • A monitoring and analytics tool to track the performance of your monday.com
    account
  • A mobile app to access your monday.com account on the go
  • A tool to help you migrate your data from another platform onto monday.com
  • An integration with your existing workflow or CRM system

Connect monday.com

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    monday: {
      type: "app",
      app: "monday",
    }
  },
  async run({steps, $}) {
    const data = {
      "query": `query {
      me {
        is_guest
        join_date
      }
    }`,
    }
    return await axios($, {
      url: `https://api.monday.com/v2`,
      headers: {
        "Authorization": `${this.monday.$auth.api_key}`,
      },
      data,
    })
  },
})