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

# Delete notifier

> Deletes one notifier and returns `null`.

`axiom.deleteNotifier` deletes one notifier and returns `null`. Remove it from monitors first unless you also replace their configurations.

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

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

<Warning>
  This operation changes or deletes provider data. Confirm the target before
  deployment.
</Warning>

## Input

`notifierId` is required and selects the notifier to delete.

## Output

Returns `null` after Axiom confirms deletion.

## Permission and failures

The API token needs the organization-level `notifiers|delete` capability. Axiom returns an error when the notifier is missing, cannot be deleted, or is still required by provider configuration. This mutation is not retried automatically after an ambiguous provider response.
