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

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

[Data] Convert JSON to String with Formatting API on New Event Scheduled from Calendly (OAuth) API
Calendly + Formatting
 
Try it
[Data] Convert JSON to String with Formatting API on New Invitee Canceled from Calendly (OAuth) API
Calendly + Formatting
 
Try it
[Data] Convert JSON to String with Formatting API on New Invitee Created from Calendly (OAuth) API
Calendly + Formatting
 
Try it
[Data] Convert JSON to String with Formatting API on New Routing Form Submission Created from Calendly (OAuth) API
Calendly + Formatting
 
Try it
[Data] Parse JSON with Formatting API on New Event Scheduled from Calendly (OAuth) API
Calendly + Formatting
 
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
[Data] Convert JSON to String with the Formatting API

Convert an object to a JSON format string

 
Try it
Get Event with the Calendly API

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

 
Try it
[Data] Parse JSON with the Formatting API

Parse a JSON string

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

Connect Formatting

1
2
3
4
5
6
export default defineComponent({
  async run({ steps, $ }) {
    const text = ' Hello world! ';
    return text.trim()
  },
})