Timekit

Timekit lets you build scalable and flexible booking experiences and scheduling flows that grow your business.

Integrate the Timekit API with the Motion API

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

Create Task with Motion API on New Booking with State from Timekit API
Timekit + Motion
 
Try it
Delete Task with Motion API on New Booking with State from Timekit API
Timekit + Motion
 
Try it
Move Workspace with Motion API on New Booking with State from Timekit API
Timekit + Motion
 
Try it
Retrieve Task with Motion API on New Booking with State from Timekit API
Timekit + Motion
 
Try it
Update Task with Motion API on New Booking with State from Timekit API
Timekit + Motion
 
Try it
New Booking with State from the Timekit API

Emit new event when a booking has a specific state. See the docs.

 
Try it
Task Status Updated from the Motion API

Emit new event when the status of a specific task is updated.

 
Try it
Create Task with the Motion API

Create a new task. See the documentation

 
Try it
Delete Task with the Motion API

Delete a specific task by Id. See the documentation

 
Try it
Move Workspace with the Motion API

Move a specific task to another workspace. When moving tasks from one workspace to another, the tasks project, status, and label(s) and assignee will all be reset. See the documentation

 
Try it
Retrieve Task with the Motion API

Retrieve a specific task by Id. See the documentation

 
Try it
Update Task with the Motion API

Update a specific task. See the documentation

 
Try it

Overview of Timekit

Timekit is a flexible booking and resource management API that enables developers to create and manage appointments and calendars. With Timekit, you can automate the scheduling process, sync calendars, manage bookings, and craft customized booking experiences. Using Pipedream, you can leverage Timekit to create efficient workflows that automate scheduling-related tasks, trigger actions based on calendar events, and integrate with various other services for a seamless operational ecosystem.

Connect Timekit

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    timekit: {
      type: "app",
      app: "timekit",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.timekit.io/v2/users`,
      headers: {
        "Content-Type": `application/json`,
      },
      auth: {
        username: ``,
        password: `${this.timekit.$auth.api_key}`,
      },
    })
  },
})

Overview of Motion

The Motion API empowers users to streamline project management and productivity tasks. Within Pipedream's environment, you can leverage this API to automate actions based on project updates, task completions, and team collaborations. It's a toolset that sails smoothly with Pipedream's knack for creating swift integrations and workflows, making it possible to connect Motion with other apps to optimize project tracking, notifications, and data synchronization.

Connect Motion

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: {
    motion: {
      type: "app",
      app: "motion",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.usemotion.com/v1
    /users/me`,
      params: {
        "X-API-Key": `${this.motion.$auth.api_key}`,
      },
    })
  },
})