Schedule meetings without the hassle. Never get double booked. Calendly works with your calendar to automate appointment scheduling.
Go to siteThe 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.
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}`,
},
})
},
})
Automated Follow-Up Emails: When a meeting is scheduled on Calendly, trigger an email via SendGrid to send personalized follow-up details and preparation materials to the invitee.
Zoom Meeting Creation: Automatically create a Zoom meeting and send the invite link to participants as soon as they book a time slot on Calendly, ensuring seamless video conference scheduling.
Slack Notifications for New Bookings: For every new appointment scheduled, send a notification to a designated Slack channel to keep your team informed about upcoming meetings and availability changes.
Creates a single-use scheduling link. See the documentation
Marks an Invitee as a No Show in Calendly. See the documentation.
Gets information about an Event associated with a URI. See the documentation.
Calendly uses OAuth authentication. When you connect your Calendly account, Pipedream will open a popup window where you can sign into Calendly and grant Pipedream permission to connect to your account. Pipedream securely stores and automatically refreshes the OAuth tokens so you can easily authenticate any Calendly API.
Pipedream requests the following authorization scopes when you connect your account:
GET
https://auth.calendly.com/oauth/authorize
?
client_id={{oauth.client_id}}
&
redirect_uri={{oauth.redirect_uri}}
&
state={{oauth.state}}
&
response_type=code
&
scope={{oauth.space_separated_scopes}}
POST
https://auth.calendly.com/oauth/token
content-type: application/x-www-form-urlencoded
accept: application/json
client_id={{oauth.client_id}}
&
client_secret={{oauth.client_secret}}
&
redirect_uri={{oauth.redirect_uri}}
&
grant_type=authorization_code
&
code={{oauth.code}}
POST
https://auth.calendly.com/oauth/token
content-type: application/x-www-form-urlencoded
accept: application/json
client_id={{oauth.client_id}}
&
client_secret={{oauth.client_secret}}
&
grant_type=refresh_token
&
refresh_token={{oauth.refresh_token}}