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

    Interface GetTenantSettingsResponseContent

    interface GetTenantSettingsResponseContent {
        change_password?: TenantSettingsPasswordPage | null;
        guardian_mfa_page?: TenantSettingsGuardianPage | null;
        default_audience?: string;
        default_directory?: string;
        error_page?: TenantSettingsErrorPage | null;
        device_flow?: TenantSettingsDeviceFlow | null;
        default_token_quota?: DefaultTokenQuota | null;
        flags?: TenantSettingsFlags;
        friendly_name?: string;
        picture_url?: string;
        support_email?: string;
        support_url?: string;
        allowed_logout_urls?: string[];
        session_lifetime?: number;
        idle_session_lifetime?: number;
        ephemeral_session_lifetime?: number;
        idle_ephemeral_session_lifetime?: number;
        sandbox_version?: string;
        legacy_sandbox_version?: string;
        sandbox_versions_available?: string[];
        default_redirection_uri?: string;
        enabled_locales?: Management.SupportedLocales[];
        session_cookie?: SessionCookieSchema | null;
        sessions?: TenantSettingsSessions | null;
        oidc_logout?: TenantOidcLogoutSettings;
        allow_organization_name_in_authentication_api?: boolean;
        customize_mfa_in_postlogin_action?: boolean;
        acr_values_supported?: string[];
        mtls?: TenantSettingsMtls | null;
        pushed_authorization_requests_supported?: boolean;
        authorization_response_iss_parameter_supported?: boolean | null;
        skip_non_verifiable_callback_uri_confirmation_prompt?: boolean | null;
    }
    Index

    Properties

    change_password?: TenantSettingsPasswordPage | null
    guardian_mfa_page?: TenantSettingsGuardianPage | null
    default_audience?: string

    Default audience for API authorization.

    default_directory?: string

    Name of connection used for password grants at the /tokenendpoint. The following connection types are supported: LDAP, AD, Database Connections, Passwordless, Windows Azure Active Directory, ADFS.

    error_page?: TenantSettingsErrorPage | null
    device_flow?: TenantSettingsDeviceFlow | null
    default_token_quota?: DefaultTokenQuota | null
    friendly_name?: string

    Friendly name for this tenant.

    picture_url?: string

    URL of logo to be shown for this tenant (recommended size: 150x150)

    support_email?: string

    End-user support email address.

    support_url?: string

    End-user support URL.

    allowed_logout_urls?: string[]

    URLs that are valid to redirect to after logout from Auth0.

    session_lifetime?: number

    Number of hours a session will stay valid.

    idle_session_lifetime?: number

    Number of hours for which a session can be inactive before the user must log in again.

    ephemeral_session_lifetime?: number

    Number of hours an ephemeral (non-persistent) session will stay valid.

    idle_ephemeral_session_lifetime?: number

    Number of hours for which an ephemeral (non-persistent) session can be inactive before the user must log in again.

    sandbox_version?: string

    Selected sandbox version for the extensibility environment.

    legacy_sandbox_version?: string

    Selected sandbox version for rules and hooks extensibility.

    sandbox_versions_available?: string[]

    Available sandbox versions for the extensibility environment.

    default_redirection_uri?: string

    The default absolute redirection uri, must be https

    enabled_locales?: Management.SupportedLocales[]

    Supported locales for the user interface.

    session_cookie?: SessionCookieSchema | null
    sessions?: TenantSettingsSessions | null
    allow_organization_name_in_authentication_api?: boolean

    Whether to accept an organization name instead of an ID on auth endpoints

    customize_mfa_in_postlogin_action?: boolean

    Whether to enable flexible factors for MFA in the PostLogin action

    acr_values_supported?: string[]

    Supported ACR values

    mtls?: TenantSettingsMtls | null
    pushed_authorization_requests_supported?: boolean

    Enables the use of Pushed Authorization Requests

    authorization_response_iss_parameter_supported?: boolean | null

    Supports iss parameter in authorization responses

    skip_non_verifiable_callback_uri_confirmation_prompt?: boolean | null

    Controls whether a confirmation prompt is shown during login flows when the redirect URI uses non-verifiable callback URIs (for example, a custom URI schema such as myapp://, or localhost). If set to true, a confirmation prompt will not be shown. We recommend that this is set to false for improved protection from malicious apps. See https://auth0.com/docs/secure/security-guidance/measures-against-app-impersonation for more information.