Update Account Policy
update Account Policy.
import { Norbix } from '@norbix.ai/ts';
const norbix = new Norbix();
const result = await norbix.hub.account.updateAccountPolicy({
id: 'id_4kX9mQvR2tYw7ZbC1dFgHj',
policyName: 'orders',
description: 'Managed via the Norbix SDK.',
policyDocumentJson: '{}',
});using Norbix.Sdk;
using Norbix.Sdk.Types.Hub;
using var client = new NorbixClient();
var result = await client.Account.UpdateAccountPolicyAsync(new UpdateAccountPolicy
{
Id = "id_4kX9mQvR2tYw7ZbC1dFgHj",
PolicyName = "orders",
Description = "Managed via the Norbix SDK.",
PolicyDocumentJson = "{}",
});In the dashboard
API reference
Last updated