Delete Notifications Group
delete Notifications Group.
import { Norbix } from '@norbix.ai/ts';
const norbix = new Norbix();
const result = await norbix.hub.account.deleteNotificationsGroup({
groupTag: 'orders',
});using Norbix.Sdk;
using Norbix.Sdk.Types.Hub;
using var client = new NorbixClient();
var result = await client.Account.DeleteNotificationsGroupAsync(new DeleteNotificationsGroup
{
GroupTag = "orders",
});from norbix_python import NorbixHub
norbix = NorbixHub()
result = norbix.account.delete_notifications_group(
groupTag="orders",
)In the dashboard
API reference
Last updated