Set Environment Rank
set Environment Rank.
import { Norbix } from '@norbix.ai/ts';
const norbix = new Norbix();
const result = await norbix.hub.account.setEnvironmentRank({
environmentName: 'orders',
rank: 10,
});using Norbix.Sdk;
using Norbix.Sdk.Types.Hub;
using var client = new NorbixClient();
var result = await client.Account.SetEnvironmentRankAsync(new SetEnvironmentRankRequest
{
EnvironmentName = "orders",
Rank = 10,
});from norbix_python import NorbixHub
norbix = NorbixHub()
result = norbix.account.set_environment_rank(
environmentName="orders",
rank=10,
)In the dashboard
API reference
Last updated