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.
Request
Query Parameters
Requested index for start of resources to be provided in response requested by client
Default value: 10
Number of items returned per page. Requested number of resources to be provided in response requested by client.
Requested index for start of resources to be provided in response requested by client
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[]required
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
Indicates whether the client is system-managed or not
pagination objectrequired
Current page number
Total number of items available
Total number of pages based on limit
Number of items per page
Indicates if there's a previous page
Indicates if there's a next page
{
"clients": [
{
"presentationDefinitionId": "string",
"name": "string",
"clientId": "string",
"clientSecret": "string",
"redirectURIs": [
"string"
],
"allowedOrigins": [
"string"
],
"callbackURI": "string",
"callbackSecret": "string",
"kid": "string",
"systemManaged": true
}
],
"pagination": {
"currentPage": 0,
"totalItems": 0,
"totalPages": 0,
"limit": 0,
"hasPrevious": true,
"hasNext": true
}
}