Get Authorization Settings
Gets the project's membership authorization (role-assignment) 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 authorization 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.getAuthorizationSettings({
});using Norbix.Sdk;
using Norbix.Sdk.Types.Hub;
using var client = new NorbixClient();
var result = await client.Membership.GetAuthorizationSettingsAsync(new GetAuthorizationSettings
{
});from norbix_python import NorbixHub
norbix = NorbixHub()
result = norbix.membership.get_authorization_settings()c, _ := norbix.New(norbix.Options{})
ctx := context.Background()
var result map[string]any
err := c.Hub.Membership.GetAuthorizationSettings(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 Authorization Settings.
Last updated