Type Alias OAuthClientAdminReadResponse

OAuthClientAdminReadResponse: {
    allowedAuthMethods?: ("client_secret" | "private_key_jwt")[];
    allowedOrigins?: string[];
    clientId: string;
    clientSecrets?: ClientSecrets;
    publicKeys?: JWK[];
    redirectUris?: string[];
} & OAuthClientBase

Response schema for reading an OAuth client as an admin user

Type Declaration

  • OptionalallowedAuthMethods?: ("client_secret" | "private_key_jwt")[]

    List of allowed authentication methods for the client

  • OptionalallowedOrigins?: string[]

    List of allowed origins for client

  • ReadonlyclientId: string

    Client application id

  • Optional ReadonlyclientSecrets?: ClientSecrets

    Hints of any client application secrets

  • OptionalpublicKeys?: JWK[]

    List of public keys for JWT authentication

  • OptionalredirectUris?: string[]

    List of allowed redirect URIs for login