Skip to main content
GET
/
verifications
/
{verificationId}
curl --request GET \
  --url 'https://sandbox.api.hopae.com/connect/v1/verifications/{verificationId}' \
  --user '{clientId}:{clientSecret}'
{
  "verificationId": "7b1e677254124c7e81db916847aded7b",
  "status": "completed",
  "providerId": "smartid",
  "flowType": "push",
  "createdAt": "2025-10-28T05:40:57.145Z",
  "verifiedAt": "2025-10-28T05:41:09.744Z",
  "expiresAt": "2025-10-28T06:10:55.742Z",
  "acr": "urn:hopae:loa3",
  "hopae_loa": 3,
  "hopae_loa_label": "substantial"
}
Retrieves high-level metadata for a verification session.

Headers

Basic authentication: set Authorization.username to your Client ID (client_id) and Authorization.password to your Client Secret (client_secret). The interface builds the header automatically.
Authorization
string
required
Direct API format: Basic <base64(client_id:client_secret)>.

Path Parameters

verificationId
string
required
The unique identifier for the verification session.

Response

verificationId
string
Unique identifier for the verification session.
status
string
Current status (for example: pending, completed).
providerId
string
Identifier of the eID provider (for example: mitid).
flowType
string
Flow type (for example: push, redirect).
createdAt
string
ISO 8601 timestamp when the verification was created.
expiresAt
string
ISO 8601 timestamp when the verification expires.
verifiedAt
string
ISO 8601 timestamp when the verification was completed. Present when status is completed.
acr
string
Authentication Context Class Reference (LoA string).
hopae_loa
number
Numeric LoA.
hopae_loa_label
string
Human‑readable LoA label (for example: substantial).
curl --request GET \
  --url 'https://sandbox.api.hopae.com/connect/v1/verifications/{verificationId}' \
  --user '{clientId}:{clientSecret}'
{
  "verificationId": "7b1e677254124c7e81db916847aded7b",
  "status": "completed",
  "providerId": "smartid",
  "flowType": "push",
  "createdAt": "2025-10-28T05:40:57.145Z",
  "verifiedAt": "2025-10-28T05:41:09.744Z",
  "expiresAt": "2025-10-28T06:10:55.742Z",
  "acr": "urn:hopae:loa3",
  "hopae_loa": 3,
  "hopae_loa_label": "substantial"
}