Update Project Expose Legal
Sets whether the project's legal documents are publicly readable via the Admin Portal.
import { Norbix } from '@norbix.ai/ts';
const norbix = new Norbix();
const result = await norbix.hub.account.updateProjectExposeLegal({
exposed: true,
});using Norbix.Sdk;
using Norbix.Sdk.Types.Hub;
using var client = new NorbixClient();
var result = await client.Account.UpdateProjectExposeLegalAsync(new UpdateProjectExposeLegal
{
Exposed = true,
});from norbix_python import NorbixHub
norbix = NorbixHub()
result = norbix.account.update_project_expose_legal(
exposed=True,
)In the dashboard
API reference
Last updated