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

# Update notifier

> Replaces one notifier's name, channel properties, and optional `disabledUntil`.

`axiom.updateNotifier` replaces one notifier's name, channel properties, and optional `disabledUntil`. Configure exactly one channel and include every value to retain.

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

export default automation("Update notifier", () => {
  onHttpRequest({ scope: "automation" })
  axiom.updateNotifier({
    notifierId: "notifier-id",
    name: "Operations email",
    properties: { email: { emails: ["on-call@example.com"] } },
  })
})
```

## Inputs

`notifierId`, `name`, and exactly one supported channel in `properties` are required. `disabledUntil` is optional and may be an Axiom timestamp or `null`. Channel shapes match `createNotifier`.

This action replaces the complete notifier configuration. Include every destination URL, credential, header, template, or channel value to retain; omitted values are not merged with the existing notifier.

## Output

Returns the complete updated notifier with its ID and available audit metadata.

## Permission and failures

The API token needs the organization-level `notifiers|update` capability. Axiom rejects missing notifiers, invalid destination settings, and incomplete channel credentials. This mutation is not retried automatically after an ambiguous provider response.
