get_summary_report
Create a detailed time tracking report by specifying workspace, date range, and filters for users, projects, tasks, and tags. Export data in JSON, PDF, CSV, or XLSX formats.
Instructions
Generate a summary time tracking report
Input Schema
Name | Required | Description | Default |
---|---|---|---|
billable | No | Filter by billable status | |
clients | No | Array of client IDs to filter | |
dateRangeEnd | Yes | End date (ISO 8601 format) | |
dateRangeStart | Yes | Start date (ISO 8601 format) | |
exportType | No | Export format | |
groups | No | Group by fields (USER, PROJECT, CLIENT, etc.) | |
projects | No | Array of project IDs to filter | |
sortColumn | No | Sort column | |
sortOrder | No | Sort order | |
tags | No | Array of tag IDs to filter | |
tasks | No | Array of task IDs to filter | |
users | No | Array of user IDs to filter | |
workspaceId | Yes | Workspace ID |
Input Schema (JSON Schema)
{
"properties": {
"billable": {
"description": "Filter by billable status",
"type": "boolean"
},
"clients": {
"description": "Array of client IDs to filter",
"items": {
"type": "string"
},
"type": "array"
},
"dateRangeEnd": {
"description": "End date (ISO 8601 format)",
"type": "string"
},
"dateRangeStart": {
"description": "Start date (ISO 8601 format)",
"type": "string"
},
"exportType": {
"description": "Export format",
"enum": [
"JSON",
"PDF",
"CSV",
"XLSX"
],
"type": "string"
},
"groups": {
"description": "Group by fields (USER, PROJECT, CLIENT, etc.)",
"items": {
"type": "string"
},
"type": "array"
},
"projects": {
"description": "Array of project IDs to filter",
"items": {
"type": "string"
},
"type": "array"
},
"sortColumn": {
"description": "Sort column",
"type": "string"
},
"sortOrder": {
"description": "Sort order",
"enum": [
"ASCENDING",
"DESCENDING"
],
"type": "string"
},
"tags": {
"description": "Array of tag IDs to filter",
"items": {
"type": "string"
},
"type": "array"
},
"tasks": {
"description": "Array of task IDs to filter",
"items": {
"type": "string"
},
"type": "array"
},
"users": {
"description": "Array of user IDs to filter",
"items": {
"type": "string"
},
"type": "array"
},
"workspaceId": {
"description": "Workspace ID",
"type": "string"
}
},
"required": [
"workspaceId",
"dateRangeStart",
"dateRangeEnd"
],
"type": "object"
}