Skip to main content
DELETE
/
alerts
/
{alert_id}
curl -X DELETE "https://api.warrn.io/alerts/a1b2c3d4-e5f6-7890-abcd-ef1234567890/" \
  -H "Authorization: Bearer warrn_k8sM2vL9xQ7nP4wR..."
{
  "message": "Alert deleted successfully"
}

Documentation Index

Fetch the complete documentation index at: https://docs.warrn.io/llms.txt

Use this file to discover all available pages before exploring further.

Delete an alert. This is a soft delete — the alert is marked as deleted but retained in the database for audit purposes.

Authentication

Authorization
string
required
Bearer token. Format: Bearer warrn_xxx. Requires write permission.

Path Parameters

alert_id
uuid
required
The alert ID.

Response

Returns a confirmation message.

Example

curl -X DELETE "https://api.warrn.io/alerts/a1b2c3d4-e5f6-7890-abcd-ef1234567890/" \
  -H "Authorization: Bearer warrn_k8sM2vL9xQ7nP4wR..."
{
  "message": "Alert deleted successfully"
}