Read OIDC Client
GET/v3/config/extension/oidc/client/:clientId
Retrieves details of an OpenID Connect client. The client enables passwordless login with EUDI Wallet by requesting verifications from individuals. The client configuration includes presentation definition that specifies which credentials to request - appearing as a QR code or deep link on the authentication page.
Request
Path Parameters
The ID of the client
Responses
- 200
Client details
Response Headers
Cache-Control string
Indicates that the response should not be cached.
- application/json
- Schema
- Example (from schema)
Schema
client object
The ID of the client's configured presentation definition
The name of the client
The ID of the client
The secret of the client
The valid redirect URIs for the client
The valid origins for the client
The URI at which a sub value will be calculated and returned according to the sent presentation
The secret used to access the callbackURI
The ID of the client's key
{
"client": {
"presentationDefinitionId": "string",
"name": "string",
"clientId": "string",
"clientSecret": "string",
"redirectURIs": [
"string"
],
"allowedOrigins": [
"string"
],
"callbackURI": "string",
"callbackSecret": "string",
"kid": "string"
}
}