cURL
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>" } '
Mark an alert as a false positive
PUT http://api.gu1.ai/alerts/{id}/false-positive
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" }'
Was this page helpful?