Status pages
Delete Status Page
Permanently deletes a status page. Requires admin role.
DELETE /api/status-pages/:id
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