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