> ## Documentation Index
> Fetch the complete documentation index at: https://docs.automate.ax/llms.txt
> Use this file to discover all available pages before exploring further.

> ## Agent Instructions
> Automate.ax automations are TypeScript programs.
> Use Bun for installation and command examples.
> Use Automate.ax for the product name and automate.ax for the package, CLI, and domain.
> Treat documented public APIs as current; do not invent transitional or deprecated names.

# On event type deleted

> Run an automation when Calendly deletes an event type.

`calendly.onEventTypeDeleted` preserves the deleted event type's identity and configuration.

```ts automations/calendly-event-type-deleted.automation.ts theme={null}
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.
