Teamdeck

Teamdeck is an employee-focused complete resource management solution for agencies and software houses. Schedule your teams, track their time and vacations in one tool

Go to site
Explore
/
Apps
/
Teamdeck

Teamdeck API Integrations

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

Overview

With Teamdeck's API you can rapidly build powerful applications to help you manage your workforce. With its RESTful interface it makes it easy to access Teamdeck's resources such as contact management, scheduling, reporting, and more. This allows you to quickly create applications that streamline and automate the way you manage your workforce.

Here are just a few of the useful applications that you can build using Teamdeck's API:

  • Scheduling Applications: Create applications that simplify creating, viewing, and editing team schedules.
  • Contact Management: Build applications to store and manage contact details of employees and clients.
  • Automated Reporting: Create automated reports on employment earnings and hours worked.
  • Time Tracking: Build applications that track hours worked by employees.
  • Payroll Management: Create applications to manage payrolls for employees and contractors.
  • Recruiting Applications: Develop applications to manage recruitment and onboarding of new staff.
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: {
    teamdeck: {
      type: "app",
      app: "teamdeck",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.teamdeck.io/v1/bookings`,
      headers: {
        "X-Api-Key": `${this.teamdeck.$auth.api_key}`,
        "Content-Type": `application/json`,
      },
    })
  },
})

Authentication

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

To retrieve your API keys,

  • Navigate to your Teamdeck and sign in
  • Go to “Settings” > “Integrations” > “API keys”