---
title: "Status-Seite löschen"
description: "Löscht eine Status-Seite endgültig. Erfordert Admin-Rolle."
---

`DELETE /api/status-pages/:id`

## Beispiel (cURL)

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

## Antwort

```json
{ "deleted": true, "id": 1 }
```

## Häufige Fehler

- `401 Unauthorized`, wenn nicht authentifiziert
- `403 Forbidden`, wenn kein Admin
- `404 Not found`, wenn die Status-Seite nicht existiert

