Calling the REST-Api, I want to get a list of tasks with their corresponding summed tracked time grouped by their project. As an example, if I have the following time entries:
- 2h, Task1, ProjectA
- 1h, Task1, ProjectA
- 3h, Task2, ProjectB
- 30m, Task2, ProjectA
I would like to get the following report:
- ProjectA
- Task1, 3h
- Task2, 30m
- ProjectB
- Task2, 3h
At the moment this is possible via the UI, but I could not find a way to do this by calling the API.
Does anyone know how this works?