Timekit

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

Integrate the Timekit API with the Filter API

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

Continue execution if a condition Is met with Filter API on New Booking with State from Timekit API
Timekit + Filter
 
Try it
End execution if a condition is met with Filter API on New Booking with State from Timekit API
Timekit + Filter
 
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
Continue execution if a condition Is met with the Filter API

Continue workflow execution only if a condition is met

 
Try it
End execution if a condition is met with the Filter API

End workflow execution if a condition is met

 
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 Filter

The Filter API in Pipedream allows for real-time data processing within workflows. It's designed to evaluate data against predefined conditions, enabling workflows to branch or perform specific actions based on those conditions. This API is instrumental in creating efficient, targeted automations that respond dynamically to diverse datasets. Using the Filter API, you can refine streams of data, ensuring that subsequent steps in your Pipedream workflow only execute when the data meets your specified criteria. This cuts down on unnecessary processing and facilitates the creation of more intelligent, context-aware systems.

Connect Filter

1
2
3
4
5
6
7
8
9
10
export default defineComponent({
  async run({ steps, $ }) {
    let condition = false
    if (condition == false) {
      $.flow.exit("Ending workflow early because the condition is false")
    } else {
        $.export("$summary", "Continuing workflow, since condition for ending was not met.")
    }
  },
})