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

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

Create a Scheduling Link with Calendly (OAuth) API on New Message from Discord API
Discord + Calendly
 
Try it
Get Event with Calendly API on New Message (Instant) from Discord API
Discord + Calendly
 
Try it
List Event Invitees with Calendly (OAuth) API on New Message from Discord API
Discord + Calendly
 
Try it
List Events with Calendly (OAuth) API on New Message from Discord API
Discord + Calendly
 
Try it
List Webhook Subscriptions with Calendly (OAuth) API on New Message from Discord API
Discord + Calendly
 
Try it
New Message (Instant) from the Discord API

Emit new event for each message posted to one or more channels in a Discord server

 
Try it
Message Deleted (Instant) from the Discord API

Emit new event for each message deleted

 
Try it
New Command Received (Instant) from the Discord API

Emit new event for each command posted to one or more channels in a Discord server

 
Try it
New Guild Member (Instant) from the Discord API

Emit new event for each new member added to a guild

 
Try it
New Guild Member (Instant) from the Discord API

Emit new event for each new member added to a guild

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

Overview of Discord

The Pipedream Discord app enables you to build event-driven workflows that interact with the Discord API. When you authorize the Pipedream app's access to your guilds, you can use Pipedream workflows to perform common Discord actions, or write your own code against the Discord API.

Connect Discord

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    discord: {
      type: "app",
      app: "discord",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://discord.com/api/users/@me`,
      headers: {
        Authorization: `Bearer ${this.discord.$auth.oauth_access_token}`,
        "accept": `application/json`,
      },
    })
  },
})