toggl_daily_report
Generate daily time tracking reports by project and workspace with hours breakdown in JSON or text format for productivity analysis.
Instructions
Generate a daily report with hours by project and workspace
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| date | No | Date for report (YYYY-MM-DD format, defaults to today) | |
| format | No | Output format (default: json) | 
Input Schema (JSON Schema)
{
  "properties": {
    "date": {
      "description": "Date for report (YYYY-MM-DD format, defaults to today)",
      "type": "string"
    },
    "format": {
      "description": "Output format (default: json)",
      "enum": [
        "json",
        "text"
      ],
      "type": "string"
    }
  },
  "type": "object"
}