v8

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

List verifications (log)

List completed verification results for your tenant. Each result shows the verdict, requested claims, disclosed claims, verifier, and verification checks.

get/v1/verifications

Response

Returns a bare JSON array. Each array element is one verification result.

created_atstring date-time

Records when the verification result was created.

errorstring

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

idstring uuid

Identifies the verification result.

request_idstring uuid

Identifies the presentation request that produced this result.

requested_claimsstring[]

Lists the claim names requested for disclosure.

vctstring

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

verdict'verified' | 'failed'

Shows whether verification succeeded or failed.

verifierstring

Identifies the verifier audience for the presentation.

Example response

[
  {
    "checks": {
      "alg_allowlist": true,
      "aud": true,
      "key_binding": true,
      "nonce": true,
      "not_expired": true,
      "not_revoked": true,
      "signature": true
    },
    "created_at": "2026-07-02T23:51:57.440034+00:00",
    "disclosed_claims": {
      "tier": "gold"
    },
    "id": "8b58a284-a711-4406-b2f4-dfece3741c36",
    "request_id": "b713a8e2-9a10-4050-b800-6917b5ac50d7",
    "requested_claims": [
      "tier"
    ],
    "vct": "AirlineLoyalty",
    "verdict": "verified",
    "verifier": "checkin-rp"
  }
]