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

# Update Notification Channel

> Update an existing notification channel's configuration

## Path Parameters

<ParamField path="id" type="string" required>
  The unique identifier of the notification channel
</ParamField>

## Request Body

All fields are optional. Only include fields you want to update.

<ParamField body="name" type="string">
  Display name for the channel
</ParamField>

<ParamField body="enabled" type="boolean">
  Enable or disable the channel
</ParamField>

<ParamField body="config" type="object">
  Channel-specific configuration (varies by type)
</ParamField>

<ParamField body="notify_on_incident" type="boolean">
  Whether to notify on incident events
</ParamField>

<ParamField body="notify_on_maintenance" type="boolean">
  Whether to notify on maintenance events
</ParamField>

## Response

Returns the updated notification channel object.

<RequestExample>
  ```bash cURL theme={null}
  curl -X PATCH "https://kodostatus.com/api/v1/notifications/channels/550e8400-e29b-41d4-a716-446655440000" \
    -H "X-API-Key: your_api_key" \
    -H "Content-Type: application/json" \
    -d '{
      "enabled": false,
      "notify_on_maintenance": false
    }'
  ```

  ```javascript Node.js theme={null}
  const response = await fetch('https://kodostatus.com/api/v1/notifications/channels/550e8400-e29b-41d4-a716-446655440000', {
    method: 'PATCH',
    headers: {
      'X-API-Key': 'your_api_key',
      'Content-Type': 'application/json'
    },
    body: JSON.stringify({
      enabled: false,
      notify_on_maintenance: false
    })
  });
  const channel = await response.json();
  ```
</RequestExample>

<ResponseExample>
  ```json theme={null}
  {
    "id": "550e8400-e29b-41d4-a716-446655440000",
    "name": "Engineering Slack",
    "type": "slack",
    "enabled": false,
    "config": {
      "webhook_url": "https://hooks.slack.com/..."
    },
    "notify_on_incident": true,
    "notify_on_maintenance": false,
    "created_at": "2026-01-15T10:30:00.000Z",
    "updated_at": "2026-02-20T11:00:00.000Z"
  }
  ```
</ResponseExample>
