Get Database Taxonomy Term Tree
Returns the whole term tree of a taxonomy (or a sub-tree) in one call.
A taxonomy is a hierarchical set of terms (categories, tags) you can attach to records. This method returns a single database taxonomy term tree by id.
This method is on the Hub surface (norbix.hub.database) — call it from admin tooling or IaC.
import { Norbix } from '@norbix.ai/ts';
const norbix = new Norbix();
const result = await norbix.hub.database.getDatabaseTaxonomyTermTree({
taxonomyName: 'orders',
rootTermId: 'rootterm_4kX9mQvR2tYw7ZbC1dFgHj',
depth: 10,
databaseIntegrationId: 'int_4kX9mQvR2tYw7ZbC1dFgHj',
});using Norbix.Sdk;
using Norbix.Sdk.Types.Hub;
using var client = new NorbixClient();
var result = await client.Database.GetDatabaseTaxonomyTermTreeAsync(new GetDatabaseTaxonomyTermTreeRequest
{
TaxonomyName = "orders",
RootTermId = "rootterm_4kX9mQvR2tYw7ZbC1dFgHj",
Depth = 10,
DatabaseIntegrationId = "int_4kX9mQvR2tYw7ZbC1dFgHj",
});In the dashboard
Manage this visually in Norbix Cloud — see Database → Taxonomies.
API reference
Full request and response for this endpoint: Get Database Taxonomy Term Tree.
Last updated