MCPcopy Create free account
hub / github.com/Asana/java-asana / findByProject

Method findByProject

src/main/java/com/asana/resources/Tasks.java:108–112  ·  view source on GitHub ↗

Returns the compact task records for all tasks within the given project, ordered by their priority within the project. @param project The project in which to search for tasks. @return Request object

(String project)

Source from the content-addressed store, hash-verified

106 * @return Request object
107 */
108 public CollectionRequest<Task> findByProject(String project) {
109
110 String path = String.format("/projects/%s/tasks", project);
111 return new CollectionRequest<Task>(this, Task.class, path, "GET");
112 }
113
114 /**
115 * Returns the compact task records for all tasks with the given tag.

Calls

no outgoing calls