calendly.onInviteeCanceled fires when one invitee cancels their participation.
automations/calendly-invitee-canceled.automation.ts
oldInvitee and newInvitee link the two invitee resources and rescheduled is true.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 a Calendly invitee cancels.
calendly.onInviteeCanceled fires when one invitee cancels their participation.
import { automation, sendEmail } from "automate.ax"
import { calendly } from "automate.ax/calendly"
export default automation("Track Calendly cancellations", () => {
const event = calendly.onInviteeCanceled({
organizationUri: "https://api.calendly.com/organizations/organization-id",
scope: "organization",
})
sendEmail({
subject: `Canceled: ${event.payload.name}`,
text: event.payload.cancellation?.reason ?? "No reason supplied",
})
})
oldInvitee and newInvitee link the two invitee resources and rescheduled is true.