Timekit lets you build scalable and flexible booking experiences and scheduling flows that grow your business.
Go to siteTimekit's API allows developers to build and integrate sophisticated online appointment booking software into their applications. With the Timekit API, you can quickly and easily build a variety of powerful scheduling and appointment booking solutions such as calendaring, appointment reminders, booking forms, and more. The API is designed to be simple and easy to use, allowing developers to create solutions that are both user friendly and powerful.
Here are just some of the things you can build with Timekit's API:
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}`,
},
})
},
})
Emit new event when a booking has a specific state. See the docs.
Timekit uses API keys for authentication. When you connect your Timekit account, Pipedream securely stores the keys so you can easily authenticate to Timekit APIs in both code and no-code steps.
You can find your app's API key in the Admin Dashboard under "API settings".