> ## Documentation Index
> Fetch the complete documentation index at: https://docs.larm.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# Update alert channel

> Updates an existing alert channel

Requires `alert_channels:read_write` permission. Only include the fields you want to change.

<ParamField path="id" type="string" required>
  Alert channel ID (UUID)
</ParamField>

<ParamField body="name" type="string">
  Channel name (1–255 characters)
</ParamField>

<ParamField body="config" type="object">
  Type-specific configuration. See [Alert channels](/alert-channels) for fields per type.
</ParamField>

<ParamField body="enabled" type="boolean">
  Whether the channel is active
</ParamField>

<ParamField body="default_for_new_monitors" type="boolean">
  Automatically link to newly created monitors
</ParamField>

<ResponseExample>
  ```json 200 theme={null}
  {
    "data": {
      "id": "550e8400-e29b-41d4-a716-446655440000",
      "name": "Ops Slack",
      "type": "slack",
      "enabled": true,
      "default_for_new_monitors": false,
      "broken_at": null,
      "broken_reason": null,
      "inserted_at": "2025-03-01T12:00:00Z",
      "updated_at": "2025-03-01T14:30:00Z"
    }
  }
  ```
</ResponseExample>
