toggl_project_summary
Retrieve total hours spent per project within specified date ranges to analyze time allocation and project progress.
Instructions
Get total hours per project for a date range
Input Schema
Name | Required | Description | Default |
---|---|---|---|
end_date | No | End date (YYYY-MM-DD format) | |
period | No | Predefined period | |
start_date | No | Start date (YYYY-MM-DD format) | |
workspace_id | No | Filter by workspace ID |
Input Schema (JSON Schema)
{
"properties": {
"end_date": {
"description": "End date (YYYY-MM-DD format)",
"type": "string"
},
"period": {
"description": "Predefined period",
"enum": [
"week",
"lastWeek",
"month",
"lastMonth"
],
"type": "string"
},
"start_date": {
"description": "Start date (YYYY-MM-DD format)",
"type": "string"
},
"workspace_id": {
"description": "Filter by workspace ID",
"type": "number"
}
},
"type": "object"
}