calendly.onInviteeNoShowDeleted reports that a no-show mark was removed.
automations/calendly-no-show-deleted.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 Calendly removes an invitee no-show mark.
calendly.onInviteeNoShowDeleted reports that a no-show mark was removed.
import { automation, sendEmail } from "automate.ax"
import { calendly } from "automate.ax/calendly"
export default automation("Clear Calendly no-show follow-up", () => {
const event = calendly.onInviteeNoShowDeleted({
organizationUri: "https://api.calendly.com/organizations/organization-id",
scope: "organization",
})
sendEmail({
subject: `No-show cleared: ${event.payload.name}`,
text: event.payload.uri,
})
})