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

> Lists notification destinations visible to the token.

`axiom.listNotifiers` lists notification destinations visible to the token. Channels include email, chat, incident-management, and webhooks.

```ts automations/axiom-list-notifiers.automation.ts theme={null}
import { automation, onHttpRequest } from "automate.ax"
import { axiom } from "automate.ax/axiom"

export default automation("List notifiers", () => {
  onHttpRequest({ scope: "automation" })
  axiom.listNotifiers({})
})
```

## Inputs

This action has no inputs.

## Output

Returns an array of notifiers. Each item includes `id`, `name`, one channel-specific `properties` object, optional `disabledUntil`, and audit metadata when Axiom provides it. No configured notifiers returns `[]`.

## Permission and failures

The API token needs the organization-level `notifiers|read` capability. Axiom can redact secret channel values in responses. Authentication and permission failures are returned as action errors.
