calendly.onInviteeNoShowCreated returns the affected invitee and scheduled event.
automations/calendly-no-show-created.automation.ts
payload.noShow contains the no-show URI and creation timestamp.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 marks an invitee as a no-show.
calendly.onInviteeNoShowCreated returns the affected invitee and scheduled event.
import { automation, sendEmail } from "automate.ax"
import { calendly } from "automate.ax/calendly"
export default automation("Follow up on Calendly no-shows", () => {
const event = calendly.onInviteeNoShowCreated({
organizationUri: "https://api.calendly.com/organizations/organization-id",
scope: "organization",
})
sendEmail({
to: event.payload.email,
subject: "We missed you",
text: event.payload.rescheduleUrl,
})
})
payload.noShow contains the no-show URI and creation timestamp.