Type Alias OAuthClientCreateResponse

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

Response schema for OAuth client creation

Type Declaration

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

    List of allowed authentication methods for the client

  • OptionalallowedOrigins?: string[]
  • ReadonlyclientId: string
  • ReadonlyclientSecret: string
  • OptionalpublicKeys?: JWK[]
  • OptionalredirectUris?: string[]