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

Save Passkey Settings

Saves the project's passkey authentication settings.

Membership settings control how authentication and authorization behave for your project β€” allowed sign-in methods, registration rules, password complexity, and passkey options. This method creates the passkey settings; the response returns its id.

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.savePasskeySettings({
  enabled: true,
  codeTtlMinutes: 10,
  maxCredentialsPerUser: 10,
  recoveryCodeCount: 10,
});
using Norbix.Sdk;
using Norbix.Sdk.Types.Hub;

using var client = new NorbixClient();

var result = await client.Membership.SavePasskeySettingsAsync(new SavePasskeySettings
{
    Enabled = true,
    CodeTtlMinutes = 10,
    MaxCredentialsPerUser = 10,
    RecoveryCodeCount = 10,
});

In the dashboard

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

API reference

Full request and response for this endpoint: Save Passkey Settings.

Last updated