Skip to main content
GET
/
apps
/
{client_id}
/
providers
curl -H "Authorization: Bearer sk_workspace_test_..." \
  "https://sandbox.api.hopae.com/connect/v1/apps/abc123/providers"
{
  "bankidse": { "enabled": true, "status": "Active" },
  "frejaid": { "enabled": false, "status": "Not Active" },
  "smartid": { "enabled": true, "status": "In Review" }
}
Returns all provider configurations for the specified app. Each provider entry contains its enabled status and current activation status.

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 an object where each key is a provider ID and the value contains:
{provider_id}
object
curl -H "Authorization: Bearer sk_workspace_test_..." \
  "https://sandbox.api.hopae.com/connect/v1/apps/abc123/providers"
{
  "bankidse": { "enabled": true, "status": "Active" },
  "frejaid": { "enabled": false, "status": "Not Active" },
  "smartid": { "enabled": true, "status": "In Review" }
}