Skip to main content
GET /partner/v1/cases/{id}/forensics
Returns a forensics entry per credential with status and a reportUrl linking to the full report. Returns 400 if no upload was created with the forensics feature. See Forensics & verification for what’s checked.

Path parameters

id
string
required
TruEnroll case ID.

Response fields

data
object

Example

{
  "success": true,
  "message": "Forensics retrieved",
  "data": {
    "id": "6850abc123def456ghi789",
    "externalId": "applicant-9876",
    "forensics": [
      {
        "credentialId": "6850ghi789abc123def456",
        "uploadId": "6850def456ghi789abc123",
        "status": "completed",
        "reportUrl": "https://..."
      }
    ]
  }
}