OIDCClientCreate
OIDC client creation request. For confidential clients, the server generates a client_secret and returns the plaintext value once via OIDCClientSecretResponse.
client_idClient Id (string)필수
nameName (string)필수
description object
하나 이상(anyOf)
- string
- null
string
client_typeClient Type (string)
Possible values: [public, confidential]
기본값:
publicgrant_typesstring[]
Possible values: [authorization_code, client_credentials]
redirect_urisstring[]
require_pkceRequire Pkce (boolean)
기본값:
trueallow_refreshAllow Refresh (boolean)
기본값:
trueallowed_audiencesstring[]
OIDCClientCreate
{
"client_id": "string",
"name": "string",
"description": "string",
"client_type": "public",
"grant_types": [
"authorization_code"
],
"redirect_uris": [
"string"
],
"require_pkce": true,
"allow_refresh": true,
"allowed_audiences": [
"string"
]
}