Auth0 Node.js SDK - v5.6.0
    Preparing search index...

    Interface CimdMappedClientFields

    Auth0 client fields mapped from the Client ID Metadata Document

    interface CimdMappedClientFields {
        external_client_id?: string;
        name?: string;
        app_type?: string;
        callbacks?: string[];
        logo_uri?: string;
        description?: string;
        grant_types?: string[];
        token_endpoint_auth_method?: string;
        jwks_uri?: string;
        client_authentication_methods?: CimdMappedClientAuthenticationMethods;
        [key: string]: any;
    }

    Indexable

    • [key: string]: any

      Accepts any additional properties

    Index

    Properties

    external_client_id?: string

    The URL of the Client ID Metadata Document

    name?: string

    Client name

    app_type?: string

    Application type (e.g., web, native)

    callbacks?: string[]

    Callback URLs

    logo_uri?: string

    Logo URI

    description?: string

    Human-readable brief description of this client presentable to the end-user

    grant_types?: string[]

    List of grant types

    token_endpoint_auth_method?: string

    Token endpoint authentication method

    jwks_uri?: string

    URL for the JSON Web Key Set containing the public keys for private_key_jwt authentication

    client_authentication_methods?: CimdMappedClientAuthenticationMethods