> ## Documentation Index
> Fetch the complete documentation index at: https://docs.gu1.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Resolver Alerta

> Marca una alerta como resuelta en la API de alertas gu1 — cierra el caso, actualiza el estado y dispara acciones de workflow para equipos de compliance.

## 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

<ParamField path="id" type="string" required>
  UUID de la alerta a resolver
</ParamField>

## Cuerpo de la Solicitud

<ParamField body="resolutionNotes" type="string">
  Notas opcionales explicando la resolución
</ParamField>

## Ejemplo de Solicitud

```bash theme={null}
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

```json theme={null}
{
  "success": true,
  "alertId": "alert-123",
  "status": "RESOLVED",
  "message": "Alerta resuelta exitosamente"
}
```

## Ver También

* [Listar Alertas](/es/api-reference/alerts/list)
* [Reconocer Alerta](/es/api-reference/alerts/acknowledge)
