Get Global Timesheet
kaiten_get_timesheetGet a global timesheet across cards and users for a date range, showing who logged how much time on which cards. Filter by users, cards, boards, or columns for targeted insights.
Instructions
Get the global timesheet across cards and users for a date range — answers 'who logged how much time on which cards last week'. from and to are REQUIRED (YYYY-MM-DD; the API returns 400 without them). Optional array filters narrow by users, cards, boards, spaces, columns, tags, or groups — pass JSON arrays, the handler joins them with commas internally. Empty arrays are skipped entirely (passing an empty filter would itself return 400). For per-user timelogs prefer kaiten_get_user_timelogs; for per-card prefer kaiten_get_card_timelogs. Returns an array of timelog objects, each with author_id / author_name enriched when the author is the API caller. limit max 200.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| to | Yes | Range end (YYYY-MM-DD) | |
| from | Yes | Range start (YYYY-MM-DD) | |
| limit | No | Max results (max 200) | |
| offset | No | Offset for pagination | |
| tagIds | No | Filter by tag IDs (from kaiten_list_workspace_tags) | |
| cardIds | No | Filter by card IDs (from kaiten_search_cards) | |
| userIds | No | Filter by user IDs (from kaiten_list_users) | |
| boardIds | No | Filter by board IDs (from kaiten_list_boards) | |
| groupIds | No | Filter by group IDs | |
| spaceIds | No | Filter by space IDs (from kaiten_list_spaces) | |
| columnIds | No | Filter by column IDs (from kaiten_list_columns) | |
| verbosity | No | Detail: raw|min(default)|normal|max | min |