Returns verification settings for the specified app.
Request
Bearer <API_KEY> from Console > Developers > Workspace API Keys.
Path parameters
Client identifier of the app.
Response
Customer-facing verification mode (e.g., identity).
Standard attributes requested.
Provider identifier (e.g., smartid).
Whether the provider can be used.
provider_specific_attributes
Provider-specific attributes (non-overlapping with standard attributes).
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"] }
]
}