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

Descripción General

Resuelve una alerta con notas de resolución opcionales.

Endpoint

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

Parámetros de Ruta

id
string
required
UUID de la alerta a resolver

Cuerpo de la Solicitud

resolutionNotes
string
Notas opcionales explicando la resolución

Ejemplo de Solicitud

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"}'

Respuesta

{
  "success": true,
  "alertId": "alert-123",
  "status": "RESOLVED",
  "message": "Alerta resuelta exitosamente"
}

Ver También