awork

Your smart digital assistant

Integrate the awork API with the Discord API

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

Create Client with awork API on New Message (Instant) from Discord API
Discord + awork
 
Try it
Create Project with awork API on New Message (Instant) from Discord API
Discord + awork
 
Try it
Find Users By Email with awork API on New Message (Instant) from Discord API
Discord + awork
 
Try it
Create Client with awork API on Message Deleted (Instant) from Discord API
Discord + awork
 
Try it
Create Client with awork API on New Command Received (Instant) from Discord API
Discord + awork
 
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 Task (Instant) from the awork API

Emit new event on each created task.

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

Emit new event for each new member added to a guild

 
Try it
Create Client with the awork API

Creates a client. See docs here

 
Try it
Create Project with the awork API

Creates a project. See docs here

 
Try it
Find Users By Email with the awork API

Finds a user by email. See docs here

 
Try it
Send Message with the Discord API

Send a simple message to a Discord channel

 
Try it
Send Message (Advanced) with the Discord API

Send a simple or structured message (using embeds) to a Discord channel

 
Try it

Overview of awork

The awork API allows for automation and integration of project management features within awork, such as tasks, projects, time tracking, and team collaborations. By leveraging the awork API on Pipedream, you can create seamless workflows that connect project activities with other apps and services, streamline processes, and enhance productivity. With Pipedream, you can trigger actions based on specific events in awork or schedule periodic tasks that synchronize data across multiple platforms, all with minimal coding.

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

Overview of Discord

The Discord API interacts seamlessly with Pipedream, empowering you to craft customized automations and workflows for your Discord server. With this powerful integration, you can automate tasks like message posting, user management, and notifications, based on a myriad of triggers and actions from different apps. These automations can enhance the Discord experience for community moderators and members, by synchronizing with external tools, organizing community engagement, and streamlining notifications.

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