Retrieve a single Face Match audit record by ID
id (the same UUID returned as verificationId in the POST Face Match response or in the list endpoint). Use it to fetch full details of a past verification for audit, support, or detail views.
Key points:
id, entityId, status, match, score, threshold, createdAt, and optional image paths.verificationId from POST or list).X-Organization-Id if your account is scoped by organization.
| Field | Type | Description |
|---|---|---|
id | string | Verification UUID. |
organizationId | string | Organization that owns the record. |
entityId | string | null | Person entity ID if provided in the request. |
status | string | approved | declined | in_review | failed. |
match | boolean | Whether faces were considered a match. |
score | number | null | Similarity score 0β100 (null when status is failed). |
requestId | string | null | Internal request ID (support). |
vendorData | string | null | Client reference from the request. |
errorMessage | string | null | Generic error message when status is failed. |
triggeredByUserId | string | null | User who called the API. |
createdAt | string | ISO timestamp. |
documentStoragePath | string | null | Storage path for document image (audit). |
selfieStoragePath | string | null | Storage path for selfie image (audit). |
storageProvider | string | null | s3 or local. |
threshold | number | null | Score threshold used for this verification (from org settings at the time). |
| Code | HTTP | Description |
|---|---|---|
NOT_FOUND | 404 | Verification ID does not exist or belongs to another organization. |
UNAUTHORIZED | 401 | Missing or invalid API key or organization context. |