Timekit

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

Integrate the Timekit API with the Formatting API

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

[Data] Convert JSON to String with Formatting API on New Booking with State from Timekit API
Timekit + Formatting
 
Try it
[Data] Parse JSON with Formatting API on New Booking with State from Timekit API
Timekit + Formatting
 
Try it
[Date/Time] Add/Subtract Time with Formatting API on New Booking with State from Timekit API
Timekit + Formatting
 
Try it
[Date/Time] Compare Dates with Formatting API on New Booking with State from Timekit API
Timekit + Formatting
 
Try it
[Date/Time] Format with Formatting API on New Booking with State from Timekit API
Timekit + Formatting
 
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
[Data] Convert JSON to String with the Formatting API

Convert an object to a JSON format string

 
Try it
[Data] Parse JSON with the Formatting API

Parse a JSON string

 
Try it
[Date/Time] Add/Subtract Time with the Formatting API

Add or subtract time from a given input

 
Try it
[Date/Time] Compare Dates with the Formatting API

Get the duration between two dates in days, hours, minutes, and seconds along with checking if they are the same.

 
Try it
[Date/Time] Format with the Formatting API

Format a date string to another date string

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

Connect Formatting

1
2
3
4
5
6
export default defineComponent({
  async run({ steps, $ }) {
    const text = ' Hello world! ';
    return text.trim()
  },
})