ListResponse[OIDCClientResponse]
Paginated response containing OIDC Client Response records. The required field is items.
items object[]required
List of resource items
Array [
id object
anyOf
- string
- null
string
client_idClient Id (string)required
nameName (string)required
description object
anyOf
- string
- null
string
categoryCategory (string)
Default value:
oidc_clientclient_typeClient Type (string)required
Possible values: [public, confidential]
grant_typesstring[]
Possible values: [authorization_code, client_credentials]
redirect_urisstring[]required
require_pkceRequire Pkce (boolean)
Default value:
trueallow_refreshAllow Refresh (boolean)
Default value:
trueallowed_audiencesstring[]
created_at object
anyOf
- integer
- null
integer
updated_at object
anyOf
- integer
- null
integer
]
next_cursor object
Cursor for next page
- string
- null
string
has_moreHas More (boolean)
Whether more pages exist
Default value:
falseListResponse[OIDCClientResponse]
{
"items": [
{
"id": "string",
"client_id": "string",
"name": "string",
"description": "string",
"category": "oidc_client",
"client_type": "public",
"grant_types": [
"authorization_code"
],
"redirect_uris": [
"string"
],
"require_pkce": true,
"allow_refresh": true,
"allowed_audiences": [
"string"
],
"created_at": 0,
"updated_at": 0
}
],
"next_cursor": "string",
"has_more": false
}