---
title: "Delete Notification Channel"
description: "Deletes a notification channel. If the channel was an org-level default, organization defaults are automatically synced."
---

`DELETE /api/notification-channels/:id`

## Example (cURL)

```bash
curl -X DELETE "$BASE_URL/api/notification-channels/1" \
  -H "Authorization: Bearer $TOKEN"
```

## Response

```json
{ "success": true }
```

## Common errors

- `401 Unauthorized` when not authenticated
- `403 Forbidden` when accessing channels outside your scope
- `404 Not found` when the channel does not exist

