List taxonomy runs
GET/v1/taxonomy/runs
Returns taxonomy run history for a tenant, most recent first. Optionally filter by source_type, field_id, and source_id. source_id is a tri-state filter: omit it for no source filter, pass an empty string to scope to the canonical "no source" bucket, or pass a concrete value to match that source.
Query Parameters
tenant_id: string
Tenant whose runs should be listed.
minLength1
maxLength255
field_id: optional string
Optional field_id filter.
maxLength255
limit: optional number
Maximum number of runs to return.
formatint64
minimum1
maximum100
source_id: optional string
Optional source_id filter. Omit for no filter; empty string scopes to the "no source" bucket; a concrete value matches that source.
maxLength255
source_type: optional string
Optional source_type filter.
maxLength255
Returns
List taxonomy runs
curl http://localhost:8080/v1/taxonomy/runs \
-H "Authorization: Bearer $HUB_API_KEY"{
"data": [
{
"id": "182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e",
"cluster_count": 0,
"created_at": "2019-12-27T18:11:19.117Z",
"embedding_count": 0,
"field_id": "field_id",
"node_count": 0,
"record_count": 0,
"source_id": "source_id",
"source_type": "source_type",
"status": "pending",
"tenant_id": "tenant_id",
"updated_at": "2019-12-27T18:11:19.117Z",
"error": "error",
"error_code": "insufficient_data",
"field_label": "field_label",
"finished_at": "2019-12-27T18:11:19.117Z",
"metrics": {
"foo": "bar"
},
"params": {
"foo": "bar"
},
"started_at": "2019-12-27T18:11:19.117Z"
}
]
}Returns Examples
{
"data": [
{
"id": "182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e",
"cluster_count": 0,
"created_at": "2019-12-27T18:11:19.117Z",
"embedding_count": 0,
"field_id": "field_id",
"node_count": 0,
"record_count": 0,
"source_id": "source_id",
"source_type": "source_type",
"status": "pending",
"tenant_id": "tenant_id",
"updated_at": "2019-12-27T18:11:19.117Z",
"error": "error",
"error_code": "insufficient_data",
"field_label": "field_label",
"finished_at": "2019-12-27T18:11:19.117Z",
"metrics": {
"foo": "bar"
},
"params": {
"foo": "bar"
},
"started_at": "2019-12-27T18:11:19.117Z"
}
]
}