cURL
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>" } '
Marcar um alerta como um falso positivo
PUT http://api.gu1.ai/alerts/{id}/false-positive
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" }'
Was this page helpful?