Zoho Projects API filter search?
Good day everyone,
I am trying to grab all the projects that belong to a project group using the API.
I got my group ID. I am already using some paramaters in my request to be able to grab more than 100 (yes we have a lot of projects).
So trying to add to to that parameters so I dont have to do a for each just to grab the one I need.
So i tried to build the the list like this.
group_list = list();
group_list.add("1644000000388059");
group_list.add("0");
After this I added that list to my json.
params.put("group" ,group_list);
This doesnt work.
I also tried having the status as a filter and it doesnt work either.
params.put("status","active ");
I also find that the API documentation for Zoho Projects is so far beyond some of the other products. Might just be me.