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

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

Create Issue with GitHub API on New Event Scheduled from Calendly (OAuth) API
Calendly + GitHub
 
Try it
Create Issue with GitHub API on New Invitee Canceled from Calendly (OAuth) API
Calendly + GitHub
 
Try it
Create Issue with GitHub API on New Invitee Created from Calendly (OAuth) API
Calendly + GitHub
 
Try it
Create Issue with GitHub API on New Routing Form Submission Created from Calendly (OAuth) API
Calendly + GitHub
 
Try it
Search Issues and Pull Requests with GitHub API on New Event Scheduled from Calendly (OAuth) API
Calendly + GitHub
 
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
New Branch from the GitHub API

Emit new event when a branch is created See the documentation

 
Try it
Create a Scheduling Link with the Calendly API

Creates a single-use scheduling link. See the docs

 
Try it
Create Issue with the GitHub API

Create a new issue in a Gihub repo. See docs here

 
Try it
Get Event with the Calendly API

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

 
Try it
Search Issues and Pull Requests with the GitHub API

Find issues and pull requests by state and keyword. See docs here

 
Try it
List Event Invitees with the Calendly API

List invitees for an event. See the docs

 
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 GitHub

The GitHub API is a powerful gateway to interaction with GitHub's vast web of data and services, offering a suite of endpoints to manipulate and retrieve information on repositories, pull requests, issues, and more. Harnessing this API on Pipedream, you can orchestrate automated workflows that respond to events in real-time, manage repository data, streamline collaborative processes, and connect GitHub with other services for a more integrated development lifecycle.

Connect GitHub

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: {
    github: {
      type: "app",
      app: "github",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.github.com/user`,
      headers: {
        Authorization: `Bearer ${this.github.$auth.oauth_access_token}`,
        "X-GitHub-Api-Version": `2022-11-28`,
      },
    })
  },
})