For the complete documentation index, see llms.txt. This page is also available as Markdown.

Update Authentication Settings

Updates the project's membership authentication preferences.

Membership settings control how authentication and authorization behave for your project β€” allowed sign-in methods, registration rules, password complexity, and passkey options. This method updates the authentication settings β€” only the fields you send are changed.

This method is on the Hub surface (norbix.hub.membership) β€” call it from admin tooling or IaC.

These examples assume the SDK is installed and your credentials are set as environment variables β€” each client reads them automatically, so the constructors below take no arguments. See Install a Norbix SDK.

import { Norbix } from '@norbix.ai/ts';
const norbix = new Norbix();

const result = await norbix.hub.membership.updateAuthenticationSettings({
  allowUsernames: true,
  logoutUrl: 'https://app.example.com/logout',
  modes: ['item-1', 'item-2'],
});
using Norbix.Sdk;
using Norbix.Sdk.Types.Hub;

using var client = new NorbixClient();

var result = await client.Membership.UpdateAuthenticationSettingsAsync(new UpdateAuthenticationSettings
{
    AllowUsernames = true,
    LogoutUrl = "https://app.example.com/logout",
    Modes = new[] { "item-1", "item-2" },
});
from norbix_python import NorbixHub

norbix = NorbixHub()

result = norbix.membership.update_authentication_settings(
    allowUsernames=True,
    logoutUrl="https://app.example.com/logout",
    modes=["item-1", "item-2"],
)

In the dashboard

Manage this visually in Norbix Cloud β€” see Membership β†’ Settings.

API reference

Full request and response for this endpoint: Update Authentication Settings.

Last updated