cURL
curl --request GET \ --url http://api.gu1.ai/intelligence/investigations/{id}/alerts \ --header 'Authorization: Bearer <token>'
Obter todos os alertas vinculados a uma investigação
{ "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 } }
curl -X GET http://api.gu1.ai/intelligence/investigations/inv-123/alerts \ -H "Authorization: Bearer YOUR_API_KEY"
Was this page helpful?