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.
Visão Geral
Recupera todos os alertas associados a uma investigação.
Parâmetros de Rota
Parâmetros de Consulta
Filtrar por categoria de alerta
Ordenar por: createdAt, severity, riskContribution
Resposta
{
"investigation": {
"id": "inv-123",
"name": "Investigação AML"
},
"alerts": [
{
"id": "alert-456",
"name": "Transação Suspeita",
"severity": "HIGH",
"riskContribution": 35,
"consolidatedAt": "2024-12-23T10:00:00Z"
}
],
"summary": {
"totalAlerts": 3,
"categories": ["transaction_monitoring", "sanctions"],
"highlightedAlerts": 1
}
}
Exemplo
curl -X GET http://api.gu1.ai/intelligence/investigations/inv-123/alerts \
-H "Authorization: Bearer YOUR_API_KEY"