Overview
Retrieves all investigations for a specific entity.
Endpoint
GET http://api.gu1.ai/intelligence/investigations
Query Parameters
Entity ID to filter investigations
Filter by status: OPEN, IN_PROGRESS, PENDING_REVIEW, CLOSED
Filter by priority: LOW, MEDIUM, HIGH, CRITICAL
Response
{
"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
}
Example
curl -X GET "http://api.gu1.ai/intelligence/investigations?entityId=entity-123&status=OPEN" \
-H "Authorization: Bearer YOUR_API_KEY"
See Also