Skip to main content
POST
/
v2
/
alerts
/
{identifier}
/
acknowledge
curl -X POST "https://api.warrn.io/v2/alerts/cpu-high-web-03/acknowledge?identifierType=alias" \
  -H "Authorization: Bearer warrn_k8sM2vL9xQ7nP4wR..."
{
  "result": "Request will be processed",
  "took": 0.0,
  "requestId": "f7a8b9c0-d1e2-3456-7890-abcdef123456"
}

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.

Acknowledge an alert. Supports lookup by alias, ID, or tiny ID.

Authentication

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

Path Parameters

identifier
string
required
The alert identifier.

Query Parameters

identifierType
string
default:"id"
How to interpret the identifier. One of: id, alias, tiny.

Request Body

The request body is optional. No fields are required.

Example

curl -X POST "https://api.warrn.io/v2/alerts/cpu-high-web-03/acknowledge?identifierType=alias" \
  -H "Authorization: Bearer warrn_k8sM2vL9xQ7nP4wR..."
{
  "result": "Request will be processed",
  "took": 0.0,
  "requestId": "f7a8b9c0-d1e2-3456-7890-abcdef123456"
}