GET
/
api
/
v1
/
providers
[
  {
    "id": "bankidse",
    "logoUrl": "https://hopae.com/logos/bankid-se.png",
    "name": "BankID Sweden",
    "description": "Swedish eID solution",
    "countries": ["SE"],
    "status": "enabled"
  }
]
Retrieves a list of available eID providers.

Headers

Authorization
string
default:"Basic NVNaZHUwZm46NVNaZHUwZm4="
required
Basic authentication header. Format: Basic <base64(clientId:clientSecret)>
For testing, use 5SZdu0fn for both clientId and clientSecret

Query Parameters

status
string
The status of the provider. Possible values: enabled, disabled

Response

id
string
The unique identifier for the eID provider
logoUrl
string
The URL of the eID provider’s logo
name
string
The display name of the eID provider
description
string
A description of the eID provider
countries
string[]
The countries supported by the eID provider
status
string
The current status of the provider. Possible values: enabled, disabled
bash curl --request GET \ --url 'https://sandbox.connect.hopae.com/api/v1/providers' \ --user '{clientId}:{clientSecret}'
[
  {
    "id": "bankidse",
    "logoUrl": "https://hopae.com/logos/bankid-se.png",
    "name": "BankID Sweden",
    "description": "Swedish eID solution",
    "countries": ["SE"],
    "status": "enabled"
  }
]