OpenID4VP Verification

List verifications (log)

List all verification results for the authenticated tenant, newest first. Each entry is a verification payload (the same shape returned by demo-present): verdict, requested and disclosed claims, the per-check booleans, and the verifier audience. Scoped to the tenant via the API key, so only this tenant's verifications are returned. Authenticated with the tenant API key.

get/v1/verifications

Response

Array of verification payloads for the tenant, ordered by creation time descending.

Example response

{
  "_root": [
    {
      "id": "b2c3d4e5-6f7a-8b9c-0d1e-2f3a4b5c6d7e",
      "request_id": "a1b2c3d4-5e6f-7a8b-9c0d-1e2f3a4b5c6d",
      "verdict": "verified",
      "vct": "https://credentials.didit.me/vct/identity-card",
      "verifier": "https://checkin.acme-air.com",
      "requested_claims": [
        "given_name",
        "birth_date"
      ],
      "disclosed_claims": {
        "given_name": "Ada",
        "birth_date": "1815-12-10"
      },
      "checks": {
        "signature": true,
        "key_binding": true,
        "aud": true,
        "nonce": true,
        "alg_allowlist": true,
        "not_expired": true,
        "not_revoked": true
      },
      "created_at": "2026-06-30T12:00:00+00:00"
    }
  ]
}

Changes