Teamwork

Project management software

Integrate the Teamwork API with the GitHub API

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

Create Issue with GitHub API on New Task Deleted from Teamwork API
Teamwork + GitHub
 
Try it
Create Issue with GitHub API on New Task from Teamwork API
Teamwork + GitHub
 
Try it
Create Issue with GitHub API on New Task Updated from Teamwork API
Teamwork + GitHub
 
Try it
Search Issues and Pull Requests with GitHub API on New Task Deleted from Teamwork API
Teamwork + GitHub
 
Try it
Search Issues and Pull Requests with GitHub API on New Task from Teamwork API
Teamwork + GitHub
 
Try it
New Task from the Teamwork API

Emit new event when a new task is created

 
Try it
New Task Deleted from the Teamwork API

Emit new event when a new task is deleted

 
Try it
New Task Updated from the Teamwork API

Emit new event when a new task is updated

 
Try it
New Branch from the GitHub API

Emit new event when a branch is created See the documentation

 
Try it
New Card in Column (Classic Projects) from the GitHub API

Emit new event when a (classic) project card is created or moved to a specific column. For Projects V2 use New Issue with Status trigger. More information here

 
Try it
Create Task with the Teamwork API

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

 
Try it
Create Issue with the GitHub API

Create a new issue in a Gihub repo. See docs here

 
Try it
Delete Task with the Teamwork API

Delete a task. See the docs here

 
Try it
Search Issues and Pull Requests with the GitHub API

Find issues and pull requests by state and keyword. See docs here

 
Try it
List Project Tasks with the Teamwork API

List tasks from a project. See the docs here

 
Try it

Overview of Teamwork

Using the Teamwork API, you can build powerful tools and applications that help
you or your team stay connected and get more done. Here are a few examples of
things you can build with it:

  • Automate routine tasks such as adding projects and tasks, moving them through
    progress stages, and assigning users to tasks
  • Create custom reports and analytics on project data
  • Schedule messaging to be sent out automatically about the progress of
    projects or tasks
  • Develop applications that sync with other services such as Gmail and Slack
  • Create workflows and custom processes to automate how tasks are handled
  • Set up notifications for when deadlines are due or tasks are completed

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

Connect GitHub

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: {
    github: {
      type: "app",
      app: "github",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.github.com/user`,
      headers: {
        Authorization: `Bearer ${this.github.$auth.oauth_access_token}`,
        "X-GitHub-Api-Version": `2022-11-28`,
      },
    })
  },
})