I can get the Project details from ATTASK api in Java. I need to get the milestones, issues and tasks for the project using Java API. for projects I used
Map<String, Object> map = new HashMap<String, Object>();
map.put("groupID", user.getString("homeGroupID"));
JSONArray results = client.search("proj", map);
I've tried replacing "proj" with "miles" and "milestone" but no luck..
Using the default AtTask Java API Client you can also pass in a list of fields you would like to see returned from the API.
An example:
This will return all projects with a groupID matching the users homeGroupID and each project will contain all issues, tasks, and milestone paths for you to view or loop through.
This website, http://developers.attask.com/api-docs/, could also be a resource to learn more about the AtTask API.