Auth0 Node.js SDK - v6.4.0
    Preparing search index...

    Interface ManagementAuthClientOptions

    Ready-to-spread options for any Management sub-client constructor.

    These mirror the options that the full ManagementClient passes to its sub-clients, so individually imported clients share the same base URL, self-refreshing token, telemetry headers, and request behaviour.

    interface ManagementAuthClientOptions {
        baseUrl: string;
        token: Supplier<string>;
        headers?: ManagementHeaders;
        timeoutInSeconds?: number;
        maxRetries?: number;
        logging?: LogConfig | Logger;
        fetcher?: (args: any) => Promise<any>;
    }
    Index
    baseUrl: string

    The Management API v2 base URL for the tenant.

    token: Supplier<string>

    A supplier that returns a valid access token, fetching or refreshing it when needed.

    headers?: ManagementHeaders

    Headers to send with every request, including the Auth0-Client telemetry header when enabled.

    timeoutInSeconds?: number

    The default maximum time to wait for a response in seconds.

    maxRetries?: number

    The default number of times to retry a request.

    logging?: LogConfig | Logger

    Logging configuration for the client.

    fetcher?: (args: any) => Promise<any>

    Custom fetcher, set automatically when a custom domain header is configured.