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

# Get notifier

> Retrieves one notifier with its channel properties, pause schedule, and creation metadata when present.

`axiom.getNotifier` retrieves one notifier with its channel properties, pause schedule, and creation metadata when present.

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

export default automation("Get notifier", () => {
  onHttpRequest({ scope: "automation" })
  axiom.getNotifier({ notifierId: "notifier-id" })
})
```

## Input

`notifierId` is required and selects one Axiom notifier.

## Output

Returns the notifier's `id`, `name`, channel-specific `properties`, optional `disabledUntil`, and available audit metadata. Axiom can redact secret channel values.

## Permission and failures

The API token needs the organization-level `notifiers|read` capability. Axiom returns an error when the notifier does not exist or the token cannot access it.
