Timekit lets you build scalable and flexible booking experiences and scheduling flows that grow your business.
Emit new event when a booking has a specific state. See the docs.
Emit new event when the status of a specific task is updated.
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.
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}`,
},
})
},
})
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.
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}`,
},
})
},
})