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

    Interface ManagementAuth

    A reusable authentication context for the Management API.

    Spread ManagementAuth.clientOptions into any Management sub-client constructor so every client shares the same base URL and self-refreshing token.

    interface ManagementAuth {
        baseUrl: string;
        getToken: () => Promise<string>;
        clientOptions: ManagementAuthClientOptions;
    }
    Index
    baseUrl: string

    The Management API v2 base URL for the tenant, e.g. https://tenant.auth0.com/api/v2.

    getToken: () => Promise<string>

    Returns a valid access token, fetching or refreshing it when needed.

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