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

> Run an automation when Calendly marks an invitee as a no-show.

`calendly.onInviteeNoShowCreated` returns the affected invitee and scheduled event.

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

export default automation("Follow up on Calendly no-shows", () => {
  const event = calendly.onInviteeNoShowCreated({
    organizationUri: "https://api.calendly.com/organizations/organization-id",
    scope: "organization",
  })
  sendEmail({
    to: event.payload.email,
    subject: "We missed you",
    text: event.payload.rescheduleUrl,
  })
})
```

`payload.noShow` contains the no-show URI and creation timestamp.
