v28

latestOpenAPI 3.1.0Apache-2.0raw.githubusercontent.com2026-07-082940159.9 KB
Taxonomy

Count feedback records per taxonomy node

Returns the feedback-record count for every visible node in a taxonomy run. Each count is a subtree total, so a topic (branch) reports the sum of its subtopics and the root reports the run total. Tenant-scoped; returns 404 if the run does not belong to the tenant.

get/v1/taxonomy/runs/{run_id}/record-counts

Path parameters

run_idstring uuid required
Example:019f177f-9aa3-705e-8195-cea2aa187268

Taxonomy run ID.

Query parameters

tenant_idstring required
Example:org-123

Tenant that owns the run.

Response

Per-node feedback-record counts for the run

Example response

{
  "counts": [
    {
      "node_id": "019f177f-9aa3-705e-8195-cea2aa187268",
      "record_count": 42
    }
  ]
}