> ## 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 um alerta como resolvido na API de alertas gu1 — encerra o caso, atualiza o status e dispara ações de workflow para equipes de compliance.

## Visão Geral

Resolve um alerta com notas de resolução opcionais.

## Endpoint

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

## Parâmetros de Rota

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

## Corpo da Requisição

<ParamField body="resolutionNotes" type="string">
  Notas opcionais explicando a resolução
</ParamField>

## Exemplo de Requisição

```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 - transação legítima verificada"}'
```

## Resposta

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

## Veja Também

* [Listar Alertas](/pt/api-reference/alerts/list)
* [Reconhecer Alerta](/pt/api-reference/alerts/acknowledge)
