본문으로 건너뛰기

ListResponse[OIDCClientResponse]

Paginated response containing OIDC Client Response records. The required field is items.

items object[]필수

List of resource items

  • Array [
  • id object
    하나 이상(anyOf)
    string
    client_idClient Id (string)필수
    nameName (string)필수
    description object
    하나 이상(anyOf)
    string
    categoryCategory (string)
    기본값: oidc_client
    client_typeClient Type (string)필수

    Possible values: [public, confidential]

    grant_typesstring[]

    Possible values: [authorization_code, client_credentials]

    redirect_urisstring[]필수
    require_pkceRequire Pkce (boolean)
    기본값: true
    allow_refreshAllow Refresh (boolean)
    기본값: true
    allowed_audiencesstring[]
    created_at object
    하나 이상(anyOf)
    integer
    updated_at object
    하나 이상(anyOf)
    integer
  • ]
  • next_cursor object

    Cursor for next page

    하나 이상(anyOf)
    string
    has_moreHas More (boolean)

    Whether more pages exist

    기본값: false
    ListResponse[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
    }