Analysis configurations
The parameters an analysis runs with, saved under a tag. They bind a detection model and some templates to that name, and a queue references them by tag.
GET
/api/v2/analysis-configsThe account's configurations, grouped by analysis type.
Response
json
{
"total": 1,
"data": {
"counting": [
{
"tag": "banano-alta-densidad",
"blockSize": 640,
"accuracy": 0.5,
"modelId": "6a61505f16c2498548903700",
"reportsConfig": [
{ "reportType": "ndre", "templates": ["6a7a8c177a894f021d22249e"] }
]
}
],
"replanting": [],
"path": []
}
}A tener en cuenta
- `tag` is what a queue step references as `configTag`.
- `modelId` is the detection model bound to the tag. Without it, one has to be picked in Kaax Desktop before running.
- Creating and deleting configurations is not on the public surface yet — do it from the dashboard or the MCP.
