1

I'm fetching all the open reports tagged as CHECKPOINT using the collab API and it's working fine. Although, when I run a custom report for the tasks, at Active Collab website, I get more and different results than what I fetched. What I need is to get exactly the same results shown when running a custom report. Does anyone know how can I fix it or if it's a problem with the API itself?

Cœur
  • 37,241
  • 25
  • 195
  • 267
Leo S.
  • 106
  • 1
  • 5

2 Answers2

1

Open browser console and see which requests ActiveCollab's web interface is making when making fetching data to build a report. Compre this with requests that you are making and see where the differences are.

Web interface gets served by the same API as your app is, so both can be made to work the same. As long as they are making the same requests, as same users.

Ilija
  • 4,105
  • 4
  • 32
  • 46
0

Solution by OP.

By creating a data filter, it shows all the reports if "include_all_projects": true! Simple is that

Cœur
  • 37,241
  • 25
  • 195
  • 267