v8

latestOpenAPI 3.1.0raw.githubusercontent.com2026-07-05730512.7 KB
OpenID4VP Verification

Get a verification result

Fetch one verification result for your tenant. You can look up the result by the UUID in the path.

get/v1/verifications/{uuid}

Path parameters

uuidstring uuid required

Identifies the verification result to fetch.

Response

Returns the verification result.

idstring uuid

Identifies the verification result.

request_idstring uuid

Identifies the presentation request that produced this result.

verdict'verified'

Shows whether verification succeeded.

vctstring

Names the VCT (Verifiable Credential Type) that was verified.

verifierstring

Identifies the verifier audience for the presentation.

requested_claimsstring[]

Lists the claim names requested for disclosure.

errorstring

Returns an empty string on success or a failure reason when verification fails.

created_atstring date-time

Records when the verification result was created.

Example response

{
  "id": "7b2322e2-4cdf-4167-b718-ee29183b1bf2",
  "request_id": "71889d7a-67c1-4ce9-bb73-5e99cd4c0265",
  "verdict": "verified",
  "vct": "AirlineLoyalty",
  "verifier": "checkin-rp",
  "requested_claims": [
    "tier"
  ],
  "disclosed_claims": {
    "tier": "gold"
  },
  "checks": {
    "alg_allowlist": true,
    "aud": true,
    "key_binding": true,
    "nonce": true,
    "not_expired": true,
    "not_revoked": true,
    "signature": true
  },
  "created_at": "2026-07-02T23:33:33.575716+00:00"
}