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>" } '
Marcar una alerta como resuelta
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": "Falso positivo - transacción legítima verificada"}'
{ "success": true, "alertId": "alert-123", "status": "RESOLVED", "message": "Alerta resuelta exitosamente" }
Was this page helpful?