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
clientId stringrequired
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
.
name string
The name of the client
redirectURIs string[]
The redirect URIs of the client
allowedOrigins string[]
The allowed origins of the client
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
name string
The name of the client
redirectURIs string[]
The redirect URIs of the client
allowedOrigins string[]
The allowed origins of the client
{
"client": {
"name": "string",
"redirectURIs": [
"string"
],
"allowedOrigins": [
"string"
]
}
}
Loading...