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

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.

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.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",
});

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