I would like to create a report for one Clockify project (I do know its ID) agregated by users. The result would be like this:
Project XY
User 1: XX (grouped duration) User 2: YY (grouped duration) User 3: ZZ (grouped duration) etc.
Is there any better way than iterating through all users calling this API?
/workspaces/{$workspace_id}/user/{$user_id}/time-entries?project={$project_id}&start={$start}&end={$end}
This is too slow and the request return only 50 time entries. Our projects have hundreds (some projects even thousends) of entries.