Discord Bot

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

Integrate the Discord Bot API with the awork API

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

Create Client with awork API on New Message in Channel from Discord Bot API
Discord Bot + awork
 
Try it
Create Project with awork API on New Message in Channel from Discord Bot API
Discord Bot + awork
 
Try it
Find Users By Email with awork API on New Message in Channel from Discord Bot API
Discord Bot + awork
 
Try it
Add Role with Discord Bot API on New Task (Instant) from awork API
awork + Discord Bot
 
Try it
Add Role with Discord Bot API on New Time Entry (Instant) from awork API
awork + 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 Task (Instant) from the awork API

Emit new event on each created task.

 
Try it
New Time Entry (Instant) from the awork API

Emit new event on each created time entry.

 
Try it
New Updated Time Entry (Instant) from the awork API

Emit new event on each updated time entry.

 
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
Create Client with the awork API

Creates a client. See 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 Project with the awork API

Creates a project. See docs here

 
Try it
Change Nickname with the Discord Bot API

Modifies the nickname of the current user in a guild.

 
Try it
Find Users By Email with the awork API

Finds a user by email. See docs here

 
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 awork

The awork API allows developers to access awork.io content and build
applications on top of the awork platform. With the awork API, you can:

  • Access awork.io content, including articles, photos, and videos
  • Build applications on top of the awork platform
  • Integrate awork.io content into your own website or application

Connect awork

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