calendly.cancelScheduledEvent accepts an event UUID and optional reason, then cancels the complete scheduled event.
automations/cancel-calendly-event.automation.ts
cancelUrl. The mutation is not replay-safe.Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Cancel a Calendly meeting for all invitees.
calendly.cancelScheduledEvent accepts an event UUID and optional reason, then cancels the complete scheduled event.
import { automation, onDashboardRun } from "automate.ax"
import { calendly } from "automate.ax/calendly"
export default automation("Cancel Calendly event", () => {
onDashboardRun({ title: "Cancel Calendly event" })
calendly.cancelScheduledEvent({
eventId: "event-id",
reason: "Host unavailable",
})
})
cancelUrl. The mutation is not replay-safe.