Enable or disable passwordless login for an admin
PUT/v3/config/admin/authentication/oidc/user/:adminId
Enables or disables passwordless login with EUDI Wallet for one admin of the organisation. When passwordless login is enabled, the admin can link a wallet and log in with a PID (Person Identification Data) credential or an iGrant.io Authenticator credential in place of a password.
Request
Path Parameters
adminId stringrequired
Unique ID of an Admin
- application/json
Body
required
enabled boolean
Default value: true
When true, passwordless login is enabled for the admin.
Responses
- 200
- 401
- 404
- 500
The service updated the passwordless login configuration.
- application/json
- Schema
- Example (from schema)
Schema
enabled boolean
The new state of passwordless login for the admin.
{
"enabled": true
}
Unauthorized
Response Headers
- application/json
- Schema
- Example (from schema)
Schema
errorCode integerrequired
errorDescription stringrequired
{
"errorCode": 400,
"errorDescription": "Bad input parameter"
}
Resource not found
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...