Skip to main content
GET
https://sandbox.api.hopae.com/connect/v1
/
apps
/
{client_id}
curl -H "Authorization: Bearer sk_workspace_test_..." \
  "https://sandbox.api.hopae.com/connect/v1/apps/abc123"
{
  "client_id": "abc123",
  "client_secret": "sh_app_...",
  "name": "My App",
  "branding": { "name": "My App", "logo": "iVBORw0KGgoAAAANSUhEUgAA..." },
  "redirect_uris": ["https://app.example.com/callback"],
  "verification": {
    "request_attributes": ["name", "birthdate"],
    "providers": [
      { "provider_id": "smartid", "enabled": true, "provider_specific_attributes": ["personal_code"] },
      { "provider_id": "mitid", "enabled": false }
    ]
  },
  "webhook_config": {
    "url": "https://hooks.example.com/hopae",
    "enabled": true,
    "events": [
      "verification.initiated",
      "verification.completed",
      "verification.expired",
      "verification.cancelled",
      "verification.failed",
      "verification.awaiting_user_action"
    ],
    "retry_attempts": 3,
    "timeout_seconds": 10
  },
  "created_at": 1731465600
}
Fetches an app and its configuration by client_id.

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

Returns the App object.
curl -H "Authorization: Bearer sk_workspace_test_..." \
  "https://sandbox.api.hopae.com/connect/v1/apps/abc123"
{
  "client_id": "abc123",
  "client_secret": "sh_app_...",
  "name": "My App",
  "branding": { "name": "My App", "logo": "iVBORw0KGgoAAAANSUhEUgAA..." },
  "redirect_uris": ["https://app.example.com/callback"],
  "verification": {
    "request_attributes": ["name", "birthdate"],
    "providers": [
      { "provider_id": "smartid", "enabled": true, "provider_specific_attributes": ["personal_code"] },
      { "provider_id": "mitid", "enabled": false }
    ]
  },
  "webhook_config": {
    "url": "https://hooks.example.com/hopae",
    "enabled": true,
    "events": [
      "verification.initiated",
      "verification.completed",
      "verification.expired",
      "verification.cancelled",
      "verification.failed",
      "verification.awaiting_user_action"
    ],
    "retry_attempts": 3,
    "timeout_seconds": 10
  },
  "created_at": 1731465600
}