Update Project Main Color
Updates project main color.
import { Norbix } from '@norbix.ai/ts';
const norbix = new Norbix();
const result = await norbix.hub.account.updateProjectMainColor({
color: '#2F6FED',
});using Norbix.Sdk;
using Norbix.Sdk.Types.Hub;
using var client = new NorbixClient();
var result = await client.Account.UpdateProjectMainColorAsync(new UpdateProjectMainColor
{
Color = "#2F6FED",
});from norbix_python import NorbixHub
norbix = NorbixHub()
result = norbix.account.update_project_main_color(
color="#2F6FED",
)In the dashboard
API reference
Last updated