Update OIDC Client
PUT/v3/config/extension/oidc/client/:clientId
Updates the configuration of an existing OpenID Connect client. Allows modification of the client's name, redirect URIs, or allowed origins.
Request
Path Parameters
The ID of the client
- application/json
Body
required
At least one of the following fields must be provided for updating the client: name, redirectURIs, or allowedOrigins.
The name of the client
The redirect URIs of the client
The allowed origins of 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
Responses
- 200
Client updated
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"
}
}