Update Authentication Settings
Updates the project's membership authentication preferences.
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
API reference
Last updated