Skip to main content
POST
http://api.gu1.ai
/
intelligence
/
alerts
/
{id}
/
resolve
Resolve Alert
curl --request POST \
  --url http://api.gu1.ai/intelligence/alerts/{id}/resolve \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "resolutionNotes": "<string>"
}
'

Overview

Resolves an alert with optional resolution notes.

Endpoint

POST http://api.gu1.ai/intelligence/alerts/{id}/resolve

Path Parameters

id
string
required
UUID of the alert to resolve

Request Body

resolutionNotes
string
Optional notes explaining the resolution

Example Request

curl -X POST http://api.gu1.ai/intelligence/alerts/alert-123/resolve \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"resolutionNotes": "False positive - verified legitimate transaction"}'

Response

{
  "success": true,
  "alertId": "alert-123",
  "status": "RESOLVED",
  "message": "Alert resolved successfully"
}

See Also