calendly.deleteInviteeNoShow accepts a no-show UUID and returns no value after Calendly removes the mark.
automations/delete-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.
Remove a Calendly invitee no-show mark.
calendly.deleteInviteeNoShow accepts a no-show UUID and returns no value after Calendly removes the mark.
import { automation, onDashboardRun } from "automate.ax"
import { calendly } from "automate.ax/calendly"
export default automation("Clear Calendly no-show", () => {
onDashboardRun({ title: "Clear Calendly no-show" })
calendly.deleteInviteeNoShow({ noShowId: "no-show-id" })
})