Skip to main content
GET
/
v1
/
investigation
/
reports
curl "https://api.vouchmark.com/v1/investigation/reports?vendorId=cmp_aBcD..." \
  -H "Authorization: Bearer $TOKEN"
{
  "success": true,
  "data": [
    {
      "reportId": "rpt_aBcD...",
      "planId": "pln_aBcD...",
      "vendorId": "cmp_aBcD...",
      "vendorName": "TEKCIFY TECHNOLOGIES LTD",
      "customerId": "usr_aBcD...",
      "triggeringEventIds": ["evt_xYz...", "evt_qRs..."],
      "sections": [
        {
          "title": "Timeline",
          "content": "2026-05-10: Sentinel detected TIN status change to INACTIVE.",
          "metadata": {}
        }
      ],
      "summary": "FIRS TIN was deactivated on 2026-05-10. The company filed an appeal which is pending.",
      "agentVersion": "2026.05.1",
      "scoreAtGeneration": 90,
      "generatedAt": "2026-05-11T08:00:00Z"
    }
  ],
  "pagination": {
    "page": 1,
    "limit": 20,
    "total": 1,
    "totalPages": 1
  }
}
Returns investigation reports generated by Smart Sentinel when an event warrants deeper analysis. Each report includes its sections, a summary, and the IDs of the events that triggered it. Reports are scoped to the authenticated customer.

Query parameters

vendorId
string
Filter to reports for a specific vendor.
from
string
Only include reports generated on or after this ISO 8601 date.
to
string
Only include reports generated on or before this ISO 8601 date.
page
integer
default:"1"
limit
integer
default:"20"
curl "https://api.vouchmark.com/v1/investigation/reports?vendorId=cmp_aBcD..." \
  -H "Authorization: Bearer $TOKEN"
{
  "success": true,
  "data": [
    {
      "reportId": "rpt_aBcD...",
      "planId": "pln_aBcD...",
      "vendorId": "cmp_aBcD...",
      "vendorName": "TEKCIFY TECHNOLOGIES LTD",
      "customerId": "usr_aBcD...",
      "triggeringEventIds": ["evt_xYz...", "evt_qRs..."],
      "sections": [
        {
          "title": "Timeline",
          "content": "2026-05-10: Sentinel detected TIN status change to INACTIVE.",
          "metadata": {}
        }
      ],
      "summary": "FIRS TIN was deactivated on 2026-05-10. The company filed an appeal which is pending.",
      "agentVersion": "2026.05.1",
      "scoreAtGeneration": 90,
      "generatedAt": "2026-05-11T08:00:00Z"
    }
  ],
  "pagination": {
    "page": 1,
    "limit": 20,
    "total": 1,
    "totalPages": 1
  }
}
vendorName, agentVersion, and scoreAtGeneration may be null. Each section’s metadata is an optional free-form object.