list_project_times
Retrieve time-tracking entries from all Holded projects. Filter by date range, approved-only status, and flatten results with pre-computed hours.
Instructions
List time-tracking entries across all Holded projects (Projects API). Each project includes a timeTracking[] array of entries with duration (seconds), date (Unix seconds), user, and approved (0/1). Optionally filter by date range (YYYY-MM-DD, inclusive) and approved-only, and flatten into a single entry list with hours pre-computed. Read-only.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| endDate | No | Keep only entries on or before this date (YYYY-MM-DD, inclusive) | |
| flatten | No | Return a flat array of entries (each with projectId, projectName, and hours = duration/3600) instead of the nested per-project structure. Default: false | |
| startDate | No | Keep only entries on or after this date (YYYY-MM-DD, inclusive) | |
| approvedOnly | No | Keep only approved entries (approved === 1). Default: false |