Calendly

Schedule meetings without the hassle. Never get double booked. Calendly works with your calendar to automate appointment scheduling.

Integrate the Calendly API with the Zoom Admin API

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

Create a Scheduling Link with Calendly (OAuth) API on Account Created from Zoom Admin API
Zoom Admin + Calendly
 
Try it
Get Event with Calendly (OAuth) API on Account Created from Zoom Admin API
Zoom Admin + Calendly
 
Try it
List Event Invitees with Calendly (OAuth) API on Account Created from Zoom Admin API
Zoom Admin + Calendly
 
Try it
List Events with Calendly (OAuth) API on Account Created from Zoom Admin API
Zoom Admin + Calendly
 
Try it
List Webhook Subscriptions with Calendly (OAuth) API on Account Created from Zoom Admin API
Zoom Admin + Calendly
 
Try it
Account Created from the Zoom Admin API

Emits an event each time a sub-account is created in your master account

 
Try it
Custom Events from the Zoom Admin API

Listen for any events tied to your Zoom account

 
Try it
Meeting Started from the Zoom Admin API

Emits an event each time a meeting starts in your Zoom account

 
Try it
Account Updated from the Zoom Admin API

Emits an event each time your master account or sub-account profile is updated

 
Try it
Recording Completed from the Zoom Admin API

Emits an event each time a recording is ready for viewing in your Zoom account

 
Try it
Create a Scheduling Link with the Calendly API

Creates a single-use scheduling link. See the docs

 
Try it
Get Event with the Calendly API

Gets information about an Event associated with a URI. See docs here.

 
Try it
List Event Invitees with the Calendly API

List invitees for an event. See the docs

 
Try it
List Events with the Calendly API

List events for an user. See the docs

 
Try it
List Webhook Subscriptions with the Calendly API

Get a list of Webhook Subscriptions for an Organization or User with a UUID.

 
Try it

Overview of Calendly

The Calendly (OAuth) API allows developers to integrate Calendly with their
applications, allowing their users to schedule appointments and events directly
from the app. With the API, developers can create, read, update, and delete
Calendly event types, invitees, and schedule events on behalf of their users.

Example applications that could be built using the Calendly (OAuth) API
include:

  • A scheduling app that allows users to schedule appointments and events
    directly from the app
  • An online booking system that allows users to book appointments and events
    directly from the app
  • A calendar app that allows users to view and manage their Calendly events and
    appointments
  • A to-do list app that allows users to track and manage their Calendly events and appointments

Connect Calendly

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: {
    calendly_v2: {
      type: "app",
      app: "calendly_v2",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.calendly.com/users/me`,
      headers: {
        Authorization: `Bearer ${this.calendly_v2.$auth.oauth_access_token}`,
      },
    })
  },
})

Connect Zoom Admin

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: {
    zoom_admin: {
      type: "app",
      app: "zoom_admin",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.zoom.us/v2/users/me`,
      headers: {
        Authorization: `Bearer ${this.zoom_admin.$auth.oauth_access_token}`,
      },
    })
  },
})