Delete Notifications Tag
delete Notifications Tag.
import { Norbix } from '@norbix.ai/ts';
const norbix = new Norbix();
const result = await norbix.hub.account.deleteNotificationsTag({
tag: 'reports',
});using Norbix.Sdk;
using Norbix.Sdk.Types.Hub;
using var client = new NorbixClient();
var result = await client.Account.DeleteNotificationsTagAsync(new DeleteNotificationsTag
{
Tag = "reports",
});from norbix_python import NorbixHub
norbix = NorbixHub()
result = norbix.account.delete_notifications_tag(
tag="reports",
)In the dashboard
API reference
Last updated