Get Passkey Settings
Gets 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 returns the passkey settings defined in your project.
This method is on the Hub surface (norbix.hub.membership) — call it from admin tooling or IaC.
import { Norbix } from '@norbix.ai/ts';
const norbix = new Norbix();
const result = await norbix.hub.membership.getPasskeySettings({
});using Norbix.Sdk;
using Norbix.Sdk.Types.Hub;
using var client = new NorbixClient();
var result = await client.Membership.GetPasskeySettingsAsync(new GetPasskeySettings
{
});from norbix_python import NorbixHub
norbix = NorbixHub()
result = norbix.membership.get_passkey_settings()c, _ := norbix.New(norbix.Options{})
ctx := context.Background()
var result map[string]any
err := c.Hub.Membership.GetPasskeySettings(ctx, nil, &result)In the dashboard
Manage this visually in Norbix Cloud — see Membership → Settings.
API reference
Full request and response for this endpoint: Get Passkey Settings.
Last updated