@auth0/nextjs-auth0 - v4.30.0
    Preparing search index...

    Interface StartEnterpriseLoginOptions

    Options for Auth0Client.startEnterpriseLogin.

    Mirrors StartInteractiveLoginOptions (so authorizationParameters, returnTo are all supported as passthrough) and adds the required email. Callers may optionally forward organization, connection, or any other authorization parameter exactly as on a normal interactive login. challengeMode is excluded — popup mode is not supported in EC mode because the popup callback response never reaches the main window's cookie jar.

    interface StartEnterpriseLoginOptions {
        authorizationParameters?: AuthorizationParameters;
        email: string;
        returnTo?: string;
    }

    Hierarchy (View Summary)

    Index
    authorizationParameters?: AuthorizationParameters

    Authorization parameters to be passed to the authorization server.

    email: string

    The user's email address. Its domain is used for Home Realm Discovery to decide whether to route through Auth0, and is passed as login_hint so Auth0 can resolve the enterprise connection and organization. This always wins over any login_hint set in authorizationParameters.

    returnTo?: string

    The URL to redirect to after a successful login.