Skip to main content

Get Evidence Set

Returns the evidence bundle generated during the biometric capture — a package containing the captured images, metadata, and capture artefacts used to prove that liveness detection was performed under controlled conditions.

Only available for completed processes (state = PROCESS_STATE_FINISHED).

Endpoint

EnvironmentURL
ProductionGET https://api.idcloud.unico.app/client/v1/process/{processId}/evidenceset
SandboxGET https://api.idcloud.uat.unico.app/client/v1/process/{processId}/evidenceset

Request

Headers
HeaderValue
AuthorizationBearer <access_token> (see Authentication)
Path parameters
ParameterTypeRequiredDescription
processIdstring (UUID)yesProcess identifier returned by Create Process.

Example

curl -X GET https://api.idcloud.unico.app/client/v1/process/$PROCESS_ID/evidenceset \
-H "Authorization: Bearer $TOKEN"

Responses

200 OK
{
"fileContents": "JVBERi0xLjMNCi...",
"contentType": "application/pdf"
}
FieldTypeDescription
fileContentsstring (base64)The evidence bundle, base64-encoded.
contentTypestringMIME type — typically application/pdf.
400 Bad Request

The processId path parameter is missing or malformed. See Error Codes below.

401 Unauthorized

Bearer token missing, expired, or invalid. See Authentication.

404 Not Found

Process not found, or the evidence set is not yet available (process not finished).

Error Codes

note

The API does not expose specific code or message values for this endpoint.

No specific code or message values are documented for this status.

What's next