> ## 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 invitee no-show deleted

> Run an automation when Calendly removes an invitee no-show mark.

`calendly.onInviteeNoShowDeleted` reports that a no-show mark was removed.

```ts automations/calendly-no-show-deleted.automation.ts theme={null}
import { automation, sendEmail } from "automate.ax"
import { calendly } from "automate.ax/calendly"

export default automation("Clear Calendly no-show follow-up", () => {
  const event = calendly.onInviteeNoShowDeleted({
    organizationUri: "https://api.calendly.com/organizations/organization-id",
    scope: "organization",
  })
  sendEmail({
    subject: `No-show cleared: ${event.payload.name}`,
    text: event.payload.uri,
  })
})
```

The payload contains the invitee state and complete scheduled event at delivery time.
