Delete Status Page
DELETE /api/status-pages/:id
Delete Status Page
DELETE /api/status-pages/:id
Permanently deletes a status page. Requires admin role.
Example (cURL)
curl -X DELETE "$BASE_URL/api/status-pages/1" \
-H "Authorization: Bearer $TOKEN"
Response
{ "deleted": true, "id": 1 }
Common errors
401 Unauthorizedwhen not authenticated403 Forbiddenwhen not an admin404 Not foundwhen the status page does not exist