Schedule

Trigger workflows on an interval or cron schedule.

Integrate the Schedule API with the Cal.com API

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

Create Booking with Cal.com API on Custom Interval from Schedule API
Schedule + Cal.com
 
Try it
Create Booking with Cal.com API on Daily schedule from Schedule API
Schedule + Cal.com
 
Try it
Create Booking with Cal.com API on Monthly Schedule from Schedule API
Schedule + Cal.com
 
Try it
Create Booking with Cal.com API on Weekly schedule from Schedule API
Schedule + Cal.com
 
Try it
Delete Booking with Cal.com API on Custom Interval from Schedule API
Schedule + Cal.com
 
Try it
Custom Interval from the Schedule API

Trigger your workflow every N hours, minutes or seconds.

 
Try it
Booking Cancelled from the Cal.com API

Emit new event when a booking is cancelled.

 
Try it
Daily schedule from the Schedule API

Trigger your workflow every day.

 
Try it
Booking Ended from the Cal.com API

Emit new event when a booking ends.

 
Try it
Monthly Schedule from the Schedule API

Trigger your workflow on one or more days each month at a specific time (with timezone support).

 
Try it
Create Booking with the Cal.com API

Create a new booking. See the docs here

 
Try it
Delete Booking with the Cal.com API

Delete an existing booking by its ID. See the docs here

 
Try it
Get Booking with the Cal.com API

Retrieve a booking by its ID. See the docs here

 
Try it

Overview of Schedule

The Schedule app in Pipedream is a powerful tool that allows you to trigger workflows at regular intervals, ranging from every minute to once a year. This enables the automation of repetitive tasks and the scheduling of actions to occur without manual intervention. By leveraging this API, you can execute code, run integrations, and process data on a reliable schedule, all within Pipedream's serverless environment.

Overview of Cal.com

The Cal.com API on Pipedream lets you seamlessly integrate your scheduling infrastructure with other services to automate appointment setting, calendar syncing, and notifications. Using Pipedream, you can craft workflows that trigger on new event bookings, cancellations, or reschedules, and connect these events to countless apps to streamline business processes, enhance customer engagement, and maintain organized schedules.

Connect Cal.com

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    cal_com: {
      type: "app",
      app: "cal_com",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://${this.cal_com.$auth.domain}/v1/hooks`,
      params: {
        apiKey: `${this.cal_com.$auth.api_key}`,
      },
    })
  },
})