Read admin authentication configuration
GET/v3/config/admin/authentication/user
Reads the authentication configuration of the admin that owns the access token. The answer shows if password login is enabled, if passwordless login with EUDI Wallet is enabled, and if the admin has linked a wallet.
Responses
- 200
- 401
- 500
The authentication configuration of the admin.
- application/json
- Schema
- Example (from schema)
Schema
authentication object
Configuration for authentication methods
password object
Configuration for password authentication
enabled boolean
oidcPasswordless object
Configuration for Passwordless Login with EUDI Wallet
enabled boolean
Whether Passwordless Login is enabled for the user
linked boolean
Whether the user has linked their EUDI Wallet for Passwordless Login
authenticatorCredentialExchangeId string
Credential Exchange ID of the issued iGrant.io Authenticator credential
{
"authentication": {
"password": {
"enabled": true
},
"oidcPasswordless": {
"enabled": true,
"linked": true,
"authenticatorCredentialExchangeId": "string"
}
}
}
Unauthorized
Response Headers
- application/json
- Schema
- Example (from schema)
Schema
errorCode integerrequired
errorDescription stringrequired
{
"errorCode": 400,
"errorDescription": "Bad input parameter"
}
Internal server error
Response Headers
- application/json
- Schema
- Example (from schema)
Schema
errorCode integerrequired
errorDescription stringrequired
{
"errorCode": 400,
"errorDescription": "Bad input parameter"
}
Loading...