Rollback Promotion
rollback Promotion.
import { Norbix } from '@norbix.ai/ts';
const norbix = new Norbix();
const result = await norbix.hub.account.rollbackPromotion({
targetEnv: 'PROD',
fromVersion: 10,
});using Norbix.Sdk;
using Norbix.Sdk.Types.Hub;
using var client = new NorbixClient();
var result = await client.Account.RollbackPromotionAsync(new RollbackPromotionRequest
{
TargetEnv = "PROD",
FromVersion = 10,
});from norbix_python import NorbixHub
norbix = NorbixHub()
result = norbix.account.rollback_promotion(
targetEnv="PROD",
fromVersion=10,
)In the dashboard
API reference
Last updated