calendly.createInviteeNoShow accepts the complete invitee URI and returns the created no-show record.
automations/mark-calendly-no-show.automation.ts
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Mark a Calendly invitee as a no-show.
calendly.createInviteeNoShow accepts the complete invitee URI and returns the created no-show record.
import { automation, onDashboardRun } from "automate.ax"
import { calendly } from "automate.ax/calendly"
export default automation("Mark Calendly no-show", () => {
onDashboardRun({ title: "Mark Calendly no-show" })
calendly.createInviteeNoShow({
invitee:
"https://api.calendly.com/scheduled_events/event-id/invitees/invitee-id",
})
})