Enable Project
Enables project.
import { Norbix } from '@norbix.ai/ts';
const norbix = new Norbix();
const result = await norbix.hub.account.enableProject();using Norbix.Sdk;
using Norbix.Sdk.Types.Hub;
using var client = new NorbixClient();
var result = await client.Account.EnableProjectAsync(new EnableProject());from norbix_python import NorbixHub
norbix = NorbixHub()
result = norbix.account.enable_project()c, _ := norbix.New(norbix.Options{})
ctx := context.Background()
var result map[string]any
err := c.Hub.Account.EnableProject(ctx, nil, &result)import NorbixSwift
let client = Norbix()
let result = try await client.hub.account.enableProject([:])In the dashboard
API reference
Last updated