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

Update Password Complexity

Updates the project's membership password complexity policy.

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 password complexity — 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.updatePasswordComplexity({
  minLength: 8,
  maxLength: 64,
  minNumbers: 1,
  maxNumbers: 8,
});
using Norbix.Sdk;
using Norbix.Sdk.Types.Hub;

using var client = new NorbixClient();

var result = await client.Membership.UpdatePasswordComplexityAsync(new UpdatePasswordComplexity
{
    MinLength = 8,
    MaxLength = 64,
    MinNumbers = 1,
    MaxNumbers = 8,
});

In the dashboard

Manage this visually in Norbix Cloud — see Membership → Settings.

API reference

Full request and response for this endpoint: Update Password Complexity.

Last updated