---
title: "Benachrichtigungskanal löschen"
description: "Löscht einen Benachrichtigungskanal. War der Kanal ein Standard auf Organisationsebene, werden die Organisations-Standards automatisch synchronisiert."
---

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

## Beispiel (cURL)

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

## Antwort (Response)

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

## Häufige Fehler

- `401 Unauthorized` wenn du nicht authentifiziert bist
- `403 Forbidden` wenn du auf Kanäle außerhalb deines Scopes zugreifst
- `404 Not found` wenn der Kanal nicht existiert

