> ## 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.

# Delete invitee no-show

> Remove a Calendly invitee no-show mark.

`calendly.deleteInviteeNoShow` accepts a no-show UUID and returns no value after Calendly removes the mark.

```ts automations/delete-calendly-no-show.automation.ts theme={null}
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" })
})
```

This mutation is not replay-safe. A successful removal emits the no-show-deleted webhook event when subscribed.
