v1
latestOpenAPI 3.0.02026-07-241220330.3 KBInvestigations
Get list of Investigations
Retrieves a filterable paginated list of investigations
get/investigations
Query parameters
pageNumnumber
Which page number to return. Default is 1
numRowsPerPagenumber
Limits results per page. Up to 100.
sortColumn'updated_at' | 'created_at' | 'total_alerts' | 'risk_score'
sortOrder'DESC' | 'ASC'
Response
Success
Example response
{
"_embedded": {
"pagination": {
"total_investigations": 95,
"total_pages": 4,
"page": 1,
"per_page": 20
},
"sorting": {
"column": "update_at",
"order": "DESC"
}
},
"investigations": [
{
"investigation_token": "INV-EAx2xoAsqF1ibKTQzkXV",
"name": "Nick Armstrong's investigation",
"total_alerts": 2,
"type": "Fraud",
"state": "alert_review",
"source": "alert",
"outcome": "Dismissed",
"created_at": "2024-11-26T16:00:14.677Z",
"updated_at": "2024-11-26T16:00:14.677Z",
"_embedded": {
"entities": {
"P-KaKZxdSGnbxXfKXnXdyp": {
"entity_name": "Nick Armstrong",
"entity_type": "person",
"entity_token": "P-KaKZxdSGnbxXfKXnXdyp",
"risk_score": 0.7
}
},
"assigned_agent": {
"first_name": "Mike",
"last_name": "Alloy",
"email": "agent@email.com",
"token": "AG-L83m6iTwcXdNg3CHndS4"
}
},
"device_ids": [
"device_vendor_identifier"
],
"program_names": [
"Program name"
],
"alert_assignees": [
"Agent name"
]
}
]
}