Teamwork

Project management software

Integrate the Teamwork API with the Discord API

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

Create Task with Teamwork API on New Message (Instant) from Discord API
Discord + Teamwork
 
Try it
Delete Task with Teamwork API on New Message (Instant) from Discord API
Discord + Teamwork
 
Try it
List Project Tasks with Teamwork API on New Message (Instant) from Discord API
Discord + Teamwork
 
Try it
Update Task with Teamwork API on New Message (Instant) from Discord API
Discord + Teamwork
 
Try it
Create Task with Teamwork API on Message Deleted (Instant) from Discord API
Discord + Teamwork
 
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 from the Teamwork API

Emit new event when a new task is created

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

Emit new event for each new member added to a guild

 
Try it
Create Task with the Teamwork API

Create a new task in the backlog. See the docs here

 
Try it
Delete Task with the Teamwork API

Delete a task. See the docs here

 
Try it
List Project Tasks with the Teamwork API

List tasks from a project. See the docs here

 
Try it
Send Message with the Discord API

Send a simple message to a Discord channel

 
Try it
Update Task with the Teamwork API

Update a task. See the docs here

 
Try it

Overview of Teamwork

The Teamwork API taps into the power of project management, letting you streamline workflows by automating tasks like creating projects, assigning tasks, tracking time, or updating statuses. With Pipedream, you can effortlessly integrate these capabilities with hundreds of other apps to create custom automations that fit your team's needs, enhancing productivity and ensuring that your projects are always moving forward with the latest information.

Connect Teamwork

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: {
    teamwork: {
      type: "app",
      app: "teamwork",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `${this.teamwork.$auth.domain}/me.json`,
      headers: {
        Authorization: `Bearer ${this.teamwork.$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`,
      },
    })
  },
})