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

# List available alert types

> Lists notification alert types available to an account.

`cloudflare.listAvailableAlertTypes` lists notification alert types available to an account.

```ts automations/cloudflare-list-available-alert-types.automation.ts theme={null}
import { automation, onDashboardRun } from "automate.ax"
import { cloudflare } from "automate.ax/cloudflare"

export default automation("List available alert types", () => {
  onDashboardRun({ title: "List available alert types" })
  cloudflare.listAvailableAlertTypes({ accountId: "account-id" })
})
```

`accountId` is required. Availability varies by account products and plan. Optional second argument `{ account }` selects a static project account binding.

Returns alert type IDs, display names, descriptions, and provider filter options.
