Skip to main content
PUT
http://api.gu1.ai
/
alerts
/
{id}
/
false-positive
Mark Alert as False Positive
curl --request PUT \
  --url http://api.gu1.ai/alerts/{id}/false-positive \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "reason": "<string>",
  "notes": "<string>"
}
'

Overview

Marks an alert as a false positive with reason and notes.

Endpoint

PUT http://api.gu1.ai/alerts/{id}/false-positive

Path Parameters

id
string
required
UUID of the alert

Request Body

reason
string
required
Reason for marking as false positive
notes
string
Additional notes

Example

curl -X PUT http://api.gu1.ai/alerts/alert-123/false-positive \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "reason": "Normal business pattern",
    "notes": "Verified with customer - regular monthly payment"
  }'