Skip to main content
DELETE
/
status-pages
/
{id}
curl -X DELETE "https://kodostatus.com/api/v1/status-pages/sp_abc123" \
  -H "X-API-Key: your_api_key"
{
  "success": true
}

Path Parameters

id
string
required
The status page ID

Response

Returns a success confirmation.
You cannot delete the default status page or the organization’s only remaining page. Set another page as default first if you need to delete the current default.

Common Errors

StatusMessageDescription
400Cannot delete the only status pageAt least one status page must exist in the organization
400Cannot delete the default status pageSet another page as default before deleting this one
404Status page not foundThe ID does not match a page in your organization
curl -X DELETE "https://kodostatus.com/api/v1/status-pages/sp_abc123" \
  -H "X-API-Key: your_api_key"
{
  "success": true
}