Analytics

Campaign metrics.

1 action. Each is callable by the agent as a tool, over HTTP via /api/invoke, and (usually) from a UI page.

analytics.overview

GET

Top-level analytics rollup. Optionally scope to a project, mission, or subject for drill-down.

  • AI tool: analytics_overview
  • API: GET /api/invoke/analytics.overview

Input

Field Type Required Description
days integer
projectId string
missionId string
subjectId string
JSON Schema
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "days": {
      "default": 30,
      "type": "integer",
      "minimum": 1,
      "maximum": 365
    },
    "projectId": {
      "type": "string",
      "minLength": 1
    },
    "missionId": {
      "type": "string",
      "minLength": 1
    },
    "subjectId": {
      "type": "string",
      "minLength": 1
    }
  }
}