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

# Create invitee no-show

> Mark a Calendly invitee as a no-show.

`calendly.createInviteeNoShow` accepts the complete invitee URI and returns the created no-show record.

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

export default automation("Mark Calendly no-show", () => {
  onDashboardRun({ title: "Mark Calendly no-show" })
  calendly.createInviteeNoShow({
    invitee:
      "https://api.calendly.com/scheduled_events/event-id/invitees/invitee-id",
  })
})
```

The result includes the no-show URI, invitee URI, and creation time. The mutation is not replay-safe.
