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 Filter API

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

Continue execution if a condition Is met with Filter API on New Event Scheduled from Calendly (OAuth) API
Calendly + Filter
 
Try it
Continue execution if a condition Is met with Filter API on New Invitee Canceled from Calendly (OAuth) API
Calendly + Filter
 
Try it
Continue execution if a condition Is met with Filter API on New Invitee Created from Calendly (OAuth) API
Calendly + Filter
 
Try it
Continue execution if a condition Is met with Filter API on New Routing Form Submission Created from Calendly (OAuth) API
Calendly + Filter
 
Try it
End execution if a condition is met with Filter API on New Event Scheduled from Calendly (OAuth) API
Calendly + Filter
 
Try it
New Event Scheduled from the Calendly API

Emit new event when a event is scheduled.

 
Try it
New Invitee Canceled from the Calendly API

Emit new event when an event is canceled.

 
Try it
New Invitee Created from the Calendly API

Emit new event when a new event is scheduled.

 
Try it
New Routing Form Submission Created from the Calendly API

Emit new event when a new routing form submission is created.

 
Try it
Create a Scheduling Link with the Calendly API

Creates a single-use scheduling link. See the docs

 
Try it
Continue execution if a condition Is met with the Filter API

Continue workflow execution only if a condition is met

 
Try it
Get Event with the Calendly API

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

 
Try it
End execution if a condition is met with the Filter API

End workflow execution if a condition is met

 
Try it
List Event Invitees with the Calendly API

List invitees for an event. See the docs

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

Overview of Filter

The Filter API is a great way to build powerful workflows that can manipulate
and transform data. Here are some examples of what you can build using the
Filter API:

  • A workflow that transforms data from one format to another
  • A workflow that filters out data that does not meet certain criteria
  • A workflow that sorts data in a specific order
  • A workflow that calculates statistics or aggregates data
  • A workflow that combines data from multiple sources

Connect Filter

1
2
3
4
5
6
7
8
9
10
export default defineComponent({
  async run({ steps, $ }) {
    let condition = false
    if (condition == false) {
      $.flow.exit("Ending workflow early because the condition is false")
    } else {
        $.export("$summary", "Continuing workflow, since condition for ending was not met.")
    }
  },
})