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 API lets you craft bespoke scheduling experiences within your apps or automate repetitive tasks involving your calendar. With this API, you can read event types, set up webhooks for new events, list invitees, or create and cancel invitation links programmatically. Pipedream's serverless platform takes the heavy lifting out of integrating Calendly with hundreds of other apps, enabling you to focus on creating workflows that save time, enhance productivity, and eliminate scheduling errors.

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}`,
      },
    })
  },
})

Overview of Zoom Admin

The Zoom Admin API lets you harness the extensive capabilities of Zoom for automation and integration, right within Pipedream. Automate user management, track Zoom rooms, monitor webinars and meetings, and customize your workflow to respond dynamically to events like new participants or ended meetings. With these APIs and the power of Pipedream, you can streamline administrative tasks, extract valuable insights, and sync Zoom activities with other services.

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}`,
      },
    })
  },
})