Delete Project Environment
delete Project Environment.
import { Norbix } from '@norbix.ai/ts';
const norbix = new Norbix();
const result = await norbix.hub.account.deleteProjectEnvironment({
environmentName: 'orders',
});using Norbix.Sdk;
using Norbix.Sdk.Types.Hub;
using var client = new NorbixClient();
var result = await client.Account.DeleteProjectEnvironmentAsync(new DeleteProjectEnvironmentRequest
{
EnvironmentName = "orders",
});from norbix_python import NorbixHub
norbix = NorbixHub()
result = norbix.account.delete_project_environment(
environmentName="orders",
)In the dashboard
API reference
Last updated