Skip to main content
PUT
http://api.gu1.ai
/
alerts
/
{id}
/
false-positive
Marcar Alerta como Falso Positivo
curl --request PUT \
  --url http://api.gu1.ai/alerts/{id}/false-positive \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "reason": "<string>",
  "notes": "<string>"
}
'

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

id
string
required
UUID do alerta

Corpo da Requisição

reason
string
required
Razão para marcar como falso positivo
notes
string
Notas adicionais

Exemplo

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