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

# Marcar Alerta como Falso Positivo

> Marcar um alerta como um falso positivo — usando a API de alertas da gu1 para fluxos de risco e compliance, com exemplos para false positive.

## Visão Geral

Marca um alerta como falso positivo com razão e notas.

## Endpoint

```
PUT http://api.gu1.ai/alerts/{id}/false-positive
```

## Parâmetros de Rota

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

## Corpo da Requisição

<ParamField body="reason" type="string" required>
  Razão para marcar como falso positivo
</ParamField>

<ParamField body="notes" type="string">
  Notas adicionais
</ParamField>

## Exemplo

```bash theme={null}
curl -X PUT http://api.gu1.ai/alerts/alert-123/false-positive \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "reason": "Padrão de negócio normal",
    "notes": "Verificado com o cliente - pagamento mensal regular"
  }'
```
