Read organisation admin
GET/v2/onboard/organisation/admin/:adminId
Reads one admin of the organisation.
Request
Path Parameters
Unique ID of an Admin
Responses
- 200
- 401
- 404
- 500
The admin.
- application/json
- Schema
- Example (from schema)
Schema
admin object
Unique identifier for the admin
Admin's email address
Full name of the admin
Admin's phone number
Unique identifier for the admin's image
URL to the admin's image
External identifier for the admin
Identity provider ID
Numeric ID of the assigned role
Human-readable name of the role
authentication objectrequired
Configuration for authentication methods
password object
Configuration for password authentication
oidcPasswordless object
Configuration for Passwordless Login with EUDI Wallet
Whether Passwordless Login is enabled for the user
Whether the user has linked their EUDI Wallet for Passwordless Login
Credential Exchange ID of the issued iGrant.io Authenticator credential
Indicates if the admin account has a pending invitation
Unique identifier for the organization
Name of the organization
{
"admin": {
"id": "string",
"email": "[email protected]",
"name": "string",
"phone": "string",
"imageId": "string",
"imageUrl": "string",
"externalId": "string",
"identityProviderId": "string",
"roleId": 0,
"roleName": "string",
"authentication": {
"password": {
"enabled": true
},
"oidcPasswordless": {
"enabled": true,
"linked": true,
"authenticatorCredentialExchangeId": "string"
}
},
"pendingInvitation": true,
"organizationId": "string",
"organizationName": "string"
}
}
Unauthorized
Response Headers
- application/json
- Schema
- Example (from schema)
Schema
{
"errorCode": 400,
"errorDescription": "Bad input parameter"
}
Resource not found
Response Headers
- application/json
- Schema
- Example (from schema)
Schema
{
"errorCode": 400,
"errorDescription": "Bad input parameter"
}
Internal server error
Response Headers
- application/json
- Schema
- Example (from schema)
Schema
{
"errorCode": 400,
"errorDescription": "Bad input parameter"
}