Teamwork

Project management software

Integrate the Teamwork API with the Schedule API

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

Create Task with Teamwork API on Custom Interval from Schedule API
Schedule + Teamwork
 
Try it
Create Task with Teamwork API on Daily schedule from Schedule API
Schedule + Teamwork
 
Try it
Create Task with Teamwork API on Monthly Schedule from Schedule API
Schedule + Teamwork
 
Try it
Create Task with Teamwork API on Weekly schedule from Schedule API
Schedule + Teamwork
 
Try it
Delete Task with Teamwork API on Custom Interval from Schedule API
Schedule + Teamwork
 
Try it
Custom Interval from the Schedule API

Trigger your workflow every N hours, minutes or seconds.

 
Try it
Daily schedule from the Schedule API

Trigger your workflow every day.

 
Try it
Monthly Schedule from the Schedule API

Trigger your workflow on one or more days each month at a specific time (with timezone support).

 
Try it
New Task from the Teamwork API

Emit new event when a new task is created

 
Try it
Weekly schedule from the Schedule API

Trigger your workflow on one or more days each week at a specific time (with timezone support).

 
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
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 Schedule

The Schedule app in Pipedream is a powerful tool that allows you to trigger workflows at regular intervals, ranging from every minute to once a year. This enables the automation of repetitive tasks and the scheduling of actions to occur without manual intervention. By leveraging this API, you can execute code, run integrations, and process data on a reliable schedule, all within Pipedream's serverless environment.