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
clientId stringrequired
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
presentationDefinitionId string
The ID of the client's configured presentation definition
name string
The name of the client
clientId string
The ID of the client
clientSecret string
The secret of the client
redirectURIs string[]
The valid redirect URIs for the client
allowedOrigins string[]
The valid origins for the client
kid string
The ID of the client's key
{
"client": {
"presentationDefinitionId": "string",
"name": "string",
"clientId": "string",
"clientSecret": "string",
"redirectURIs": [
"string"
],
"allowedOrigins": [
"string"
],
"kid": "string"
}
}
Loading...