calendly.onEventTypeDeleted preserves the deleted event type’s identity and configuration.
automations/calendly-event-type-deleted.automation.ts
payload.deletedAt identifies when Calendly deleted the event type.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 deletes an event type.
calendly.onEventTypeDeleted preserves the deleted event type’s identity and configuration.
import { automation, sendEmail } from "automate.ax"
import { calendly } from "automate.ax/calendly"
export default automation("Record deleted Calendly event types", () => {
const event = calendly.onEventTypeDeleted({
organizationUri: "https://api.calendly.com/organizations/organization-id",
scope: "organization",
})
sendEmail({
subject: `Deleted: ${event.payload.name}`,
text: event.payload.uri,
})
})
payload.deletedAt identifies when Calendly deleted the event type.