Skip to main content
GET
/
apps
/
{client_id}
/
verification
curl -H "Authorization: Bearer sk_workspace_test_..." \
  "https://sandbox.api.hopae.com/connect/v1/apps/abc123/verification"
{
  "verification_type": "identity",
  "request_attributes": ["name", "birthdate"],
  "providers": [
    { "provider_id": "smartid", "enabled": true, "provider_specific_attributes": ["personal_code"] }
  ]
}
Returns verification settings for the specified app.

Request

Authorization
string
required
Bearer <API_KEY> from Console > Developers > Workspace API Keys.

Path parameters

client_id
string
required
Client identifier of the app.

Response

verification_type
string
Customer-facing verification mode (e.g., identity).
request_attributes
string[]
Standard attributes requested.
providers
object[]
curl -H "Authorization: Bearer sk_workspace_test_..." \
  "https://sandbox.api.hopae.com/connect/v1/apps/abc123/verification"
{
  "verification_type": "identity",
  "request_attributes": ["name", "birthdate"],
  "providers": [
    { "provider_id": "smartid", "enabled": true, "provider_specific_attributes": ["personal_code"] }
  ]
}