Skip to content
scango.ch
English
Esc
navigateopen⌘Jpreview

Get identity log by ID

Get a single identity verification log by id. Returns 403 if identity logs are not enabled for the organization.

GET/identity-logs/{logId}
Authorization
AuthorizationBearer token (API key) · headerrequired
Organization API key.
Path parameters
logIdstringrequired
Responses
200Identity log
dataIdentityLogrequired
Identity verification log. Dates are ISO-8601. Includes org-owned PII from the scan.
Show properties
idstring
logTypestring
appVersionstring
accessboolean
Whether access was granted.
instancestring
logDatestring<date-time>
storestring
Store id
sourcestring
userstring
birthDatestring
imageUrlstring
rawTextstring
Raw MRZ / scan payload.
403Unauthorized, or identity logs not enabled for this organization
statusCodeintegerrequired
HTTP status code
messagestringrequired
Human-readable error message
timestampstring<date-time>required
pathstringrequired
Request path
404Not found
statusCodeintegerrequired
HTTP status code
messagestringrequired
Human-readable error message
timestampstring<date-time>required
pathstringrequired
Request path
Request
curl -X GET "https://dashboard.scango.ch/api/v1/identity-logs/string" \
  -H "Authorization: Bearer YOUR_TOKEN"
Response
{
  "data": {
    "id": "string",
    "logType": "string",
    "appVersion": "string",
    "access": true,
    "instance": "string",
    "logDate": "2019-08-24T14:15:22Z",
    "store": "string",
    "source": "string",
    "user": "string",
    "birthDate": "string",
    "imageUrl": "string",
    "rawText": "string"
  }
}