getSummaryReport
Generate a summary report of hours worked by users or projects within a specified date range. Optionally filter by specific user IDs or project IDs for detailed insights.
Instructions
Get a summary report of hours by user/project for a date range. Optional: userIds, projectIds.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
end | Yes | End date (ISO8601) | |
projectIds | No | Array of project IDs (optional) | |
start | Yes | Start date (ISO8601) | |
userIds | No | Array of user IDs (optional) |
Input Schema (JSON Schema)
{
"properties": {
"end": {
"description": "End date (ISO8601)",
"type": "string"
},
"projectIds": {
"description": "Array of project IDs (optional)",
"items": {
"type": "string"
},
"type": "array"
},
"start": {
"description": "Start date (ISO8601)",
"type": "string"
},
"userIds": {
"description": "Array of user IDs (optional)",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"start",
"end"
],
"type": "object"
}