calendly.onInviteeCreated starts from a new booking.
automations/calendly-invitee-created.automation.ts
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Run an automation when an invitee books a Calendly meeting.
calendly.onInviteeCreated starts from a new booking.
import { automation, sendEmail } from "automate.ax"
import { calendly } from "automate.ax/calendly"
export default automation("Welcome Calendly invitees", () => {
const event = calendly.onInviteeCreated({
organizationUri: "https://api.calendly.com/organizations/organization-id",
scope: "organization",
})
sendEmail({
to: event.payload.email,
subject: `Booked: ${event.payload.scheduledEvent.name}`,
text: `Starts ${event.payload.scheduledEvent.startTime}`,
})
})