curl -X DELETE "https://kodostatus.com/api/v1/status-pages/sp_abc123" \
-H "X-API-Key: your_api_key"
{
"success": true
}
Status Pages
Delete Status Page
Permanently delete a status page
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
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
| Status | Message | Description |
|---|---|---|
| 400 | Cannot delete the only status page | At least one status page must exist in the organization |
| 400 | Cannot delete the default status page | Set another page as default before deleting this one |
| 404 | Status page not found | The 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
}