Retrieves high-level metadata for a verification session.
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.
Direct API format: Basic <base64(client_id:client_secret)>.
Path Parameters
The unique identifier for the verification session.
Response
Unique identifier for the verification session.
Current status (for example: pending, completed).
Identifier of the eID provider (for example: mitid).
Flow type (for example: push, redirect).
ISO 8601 timestamp when the verification was created.
ISO 8601 timestamp when the verification expires.
ISO 8601 timestamp when the verification was completed. Present when status is completed.
Authentication Context Class Reference (LoA 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:loa:3",
"hopae_loa": 3,
"hopae_loa_label": "substantial"
}