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.

Error Codes

note

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

The processId path parameter is missing or malformed.

What's next