Visão Geral
Recupera todas as investigações para uma entidade específica.
Endpoint
GET http://api.gu1.ai/intelligence/investigations
Parâmetros de Consulta
ID da entidade para filtrar investigações
Filtrar por status: OPEN, IN_PROGRESS, PENDING_REVIEW, CLOSED
Filtrar por prioridade: LOW, MEDIUM, HIGH, CRITICAL
Resposta
{
"success": true,
"investigations": [
{
"id": "inv-123",
"name": "Investigação AML",
"investigationNumber": "INV-2024-001",
"status": "IN_PROGRESS",
"priority": "HIGH",
"riskScore": 85,
"alertCount": 3,
"createdAt": "2024-12-23T10:00:00Z"
}
],
"count": 1
}
Exemplo
curl -X GET "http://api.gu1.ai/intelligence/investigations?entityId=entity-123&status=OPEN" \
-H "Authorization: Bearer YOUR_API_KEY"
Veja Também