Team Up

It's more than a calendar. Organize things in colors, grids, lists, and custom fields. Connect dots easily among schedules, people and information.

Go to site
Explore
/
Apps
/
Team Up

Team Up API Integrations

Build and run workflows using the Team Up API. Use 1000s of source-available triggers and actions across 1000+ apps. Or write custom code to integrate any app or API in seconds.

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: {
    team_up: {
      type: "app",
      app: "team_up",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.teamup.com/{your_calendar_id}/events`,
      headers: {
        "Content-Type": `application/json`,
        "Teamup-Token": `${this.team_up.$auth.api_key}`,
      },
    })
  },
})

Authentication

Team Up uses API keys for authentication. When you connect your Team Up account, Pipedream securely stores the keys so you can easily authenticate to Team Up APIs in both code and no-code steps.