For the complete documentation index, see llms.txt. This page is also available as Markdown.

Find Term Tree

Find Term Tree.

A taxonomy is a hierarchical set of terms (categories, tags) you can attach to records. Finds the term tree.

This method is on the runtime API surface (norbix.api.database) β€” call it from your app.

These examples assume the SDK is installed and your credentials are set as environment variables β€” each client reads them automatically, so the constructors below take no arguments. See Install a Norbix SDK.

import { Norbix } from '@norbix.ai/ts';
const norbix = new Norbix();

const result = await norbix.api.database.findTermTree({
  taxonomyName: 'orders',
  rootTermId: 'rootterm_4kX9mQvR2tYw7ZbC1dFgHj',
  depth: 10,
  databaseIntegrationId: 'int_4kX9mQvR2tYw7ZbC1dFgHj',
});
using Norbix.Sdk;
using Norbix.Sdk.Types.Api;

using var client = new NorbixClient();

var result = await client.Database.FindTermTreeAsync(new FindTermTreeRequest
{
    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: Find Term Tree.

Last updated