cURL
curl --request POST \ --url http://api.gu1.ai/intelligence/alerts/{id}/resolve \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "resolutionNotes": "<string>" } '
Mark an alert as resolved
POST http://api.gu1.ai/intelligence/alerts/{id}/resolve
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"}'
{ "success": true, "alertId": "alert-123", "status": "RESOLVED", "message": "Alert resolved successfully" }
Was this page helpful?