Update Account Profile
update Account Profile.
The Account & Projects area manages your Norbix account and its projects — projects and environments, team members and their roles, billing and usage, and account-level settings. This method updates the account profile — only the fields you send are changed.
This method is on the Hub surface (norbix.hub.account) — call it from admin tooling or IaC.
import { Norbix } from '@norbix.ai/ts';
const norbix = new Norbix();
const result = await norbix.hub.account.updateAccountProfile({
displayName: 'Alice Nguyen',
billingEmail: 'alice@example.com',
operationsEmail: 'alice@example.com',
securityEmail: 'alice@example.com',
});using Norbix.Sdk;
using Norbix.Sdk.Types.Hub;
using var client = new NorbixClient();
var result = await client.Account.UpdateAccountProfileAsync(new UpdateAccountProfile
{
DisplayName = "Alice Nguyen",
BillingEmail = "alice@example.com",
OperationsEmail = "alice@example.com",
SecurityEmail = "alice@example.com",
});Dart / Flutter examples for this page are still in the works — we are verifying the exact SDK shapes and will add them shortly. The method itself is available in every Norbix SDK.
In the dashboard
Manage this visually in Norbix Cloud — see Account & Projects → Profile.
API reference
Full request and response for this endpoint: Update Account Profile.
Last updated