Type Alias OAuthClientCreateResponse

OAuthClientCreateResponse: {
    allowedOrigins?: string[];
    clientId: string;
    clientSecret: string;
    redirectUris?: string[];
} & OAuthClientBase

Response schema for OAuth client creation

Type declaration

  • OptionalallowedOrigins?: string[]

    List of allowed redirect URIs for login

  • ReadonlyclientId: string

    Client application id

  • ReadonlyclientSecret: string

    Client application secret

  • OptionalredirectUris?: string[]

    List of allowed redirect URIs for login