Create OIDC Client
POST/v3/config/extension/oidc/client
Creates an OpenID Connect client. The client enables passwordless login with EUDI Wallet by requesting verifications from individuals. During client creation, a presentation definition specifies which credentials to request - appearing as a QR code or deep link on the authentication page.
Request
- application/json
Body
presentationDefinitionId stringrequired
The ID of the presentation definition to use for this client
name stringrequired
The name of the client
redirectURIs string[]required
The redirect URIs for the client
allowedOrigins string[]required
The origins for the client
Responses
- 201
Client created
Response Headers
Cache-Control string
Indicates that the response should not be cached.
- application/json
- Schema
- Example (from schema)
Schema
clientId string
The ID of the created client
clientSecret string
The secret of the created client
{
"clientId": "string",
"clientSecret": "string"
}
Loading...