cURL
curl --request GET \ --url http://api.gu1.ai/intelligence/investigations \ --header 'Authorization: Bearer <token>'
Get investigations for an entity
GET http://api.gu1.ai/intelligence/investigations
{ "success": true, "investigations": [ { "id": "inv-123", "name": "AML Investigation", "investigationNumber": "INV-2024-001", "status": "IN_PROGRESS", "priority": "HIGH", "riskScore": 85, "alertCount": 3, "createdAt": "2024-12-23T10:00:00Z" } ], "count": 1 }
curl -X GET "http://api.gu1.ai/intelligence/investigations?entityId=entity-123&status=OPEN" \ -H "Authorization: Bearer YOUR_API_KEY"
Was this page helpful?