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 Telegram Bot API

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

Create a Scheduling Link with Calendly (OAuth) API on Channel Updates (Instant) from Telegram Bot API
Telegram Bot + Calendly
 
Try it
Create a Scheduling Link with Calendly (OAuth) API on Message Updates (Instant) from Telegram Bot API
Telegram Bot + Calendly
 
Try it
Create a Scheduling Link with Calendly (OAuth) API on New Bot Command Received (Instant) from Telegram Bot API
Telegram Bot + Calendly
 
Try it
Create a Scheduling Link with Calendly (OAuth) API on New Updates (Instant) from Telegram Bot API
Telegram Bot + Calendly
 
Try it
Create Chat Invite Link with Telegram Bot API on New Event Scheduled from Calendly (OAuth) API
Calendly + Telegram Bot
 
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 Bot Command Received (Instant) from the Telegram Bot API

Emit new event each time a Telegram Bot command is received.

 
Try it
Create a Scheduling Link with the Calendly API

Creates a single-use scheduling link. See the docs

 
Try it
Create Chat Invite Link with the Telegram Bot API

Create an additional invite link for a chat, See the docs for more information

 
Try it
Get Event with the Calendly API

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

 
Try it
Delete a Message with the Telegram Bot API

Deletes a message. See the docs for more information

 
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 Telegram Bot

With the Telegram Bot API, you can build bots that perform a variety of tasks,
including:

  • Sending and receiving messages
  • Social networking
  • Content management
  • File sharing
  • Location sharing
  • Bot administration
  • And more!

Connect Telegram Bot

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    telegram_bot_api: {
      type: "app",
      app: "telegram_bot_api",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.telegram.org/bot${this.telegram_bot_api.$auth.token}/getMe`,
    })
  },
})