List OIDC Client
GET/v3/config/extension/oidc/clients
Retrieves a list of all OpenID Connect clients configured for the organisation, including their verification request settings and configurations.
Responses
- 200
List of clients
Response Headers
Cache-Control string
Indicates that the response should not be cached.
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
clients 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
{
"clients": [
{
"presentationDefinitionId": "string",
"name": "string",
"clientId": "string",
"clientSecret": "string",
"redirectURIs": [
"string"
],
"allowedOrigins": [
"string"
],
"kid": "string"
}
]
}
Loading...