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

Update Project Description

Updates project description.

A project is the top-level container for everything in Norbix — environments, modules, and data. These endpoints create and configure projects. This method updates the project description — 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.updateProjectDescription({
  description: 'Managed via the Norbix SDK.',
});
using Norbix.Sdk;
using Norbix.Sdk.Types.Hub;

using var client = new NorbixClient();

var result = await client.Account.UpdateProjectDescriptionAsync(new UpdateProjectDescription
{
    Description = "Managed via the Norbix SDK.",
});
from norbix_python import NorbixHub

norbix = NorbixHub()

result = norbix.account.update_project_description(
    description="Managed via the Norbix SDK.",
)

In the dashboard

Manage this visually in Norbix Cloud — see Account & Projects → Projects.

API reference

Full request and response for this endpoint: Update Project Description.

Last updated