You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Returns the compact project records for some filtered set of projects. Use one or more of the parameters provided to filter the projects returned.
218
+
* Returns the compact project records for some filtered set of projects. Use one or more of the parameters provided to filter the projects returned. *Note: This endpoint may timeout for large domains. Try filtering by team!*
219
219
* @param archived Only return projects whose `archived` field takes on the value of this parameter. (optional)
220
220
* @param team The team to filter projects on. (optional)
221
221
* @param workspace The workspace or organization to filter projects on. (optional)
@@ -300,7 +300,7 @@ public CollectionRequest<Project> getProjectsForTeam(String teamGid, Boolean arc
300
300
}
301
301
/**
302
302
* Get all projects in a workspace
303
-
* Returns the compact project records for all projects in the workspace.
303
+
* Returns the compact project records for all projects in the workspace. *Note: This endpoint may timeout for large domains. Prefer the `/teams/{team_gid}/projects` endpoint.*
304
304
* @param workspaceGid Globally unique identifier for the workspace or organization. (required)
305
305
* @param archived Only return projects whose `archived` field takes on the value of this parameter. (optional)
306
306
* @param offset Offset token. An offset to the next page returned by the API. A pagination request will return an offset token, which can be used as an input parameter to the next request. If an offset is not passed in, the API will return the first page of results. 'Note: You can only pass in an offset that was returned to you via a previously paginated request.' (optional)
Copy file name to clipboardExpand all lines: src/main/java/com/asana/resources/gen/TasksBase.java
+4-6Lines changed: 4 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -432,7 +432,7 @@ public CollectionRequest<Task> getTasksForTag(String tagGid) throws IOException
432
432
}
433
433
/**
434
434
* Get tasks from a user task list
435
-
* Returns the compact list of tasks in a user’s My Tasks list. The returned tasks will be in order within each assignee status group of `Inbox`, `Today`, and `Upcoming`. *Note: tasks in `Later` have a different ordering in the Asana web app than the other assignee status groups; this endpoint will still return them in list order in `Later` (differently than they show up in Asana, but the same order as in Asana’s mobile apps).* *Note: Access control is enforced for this endpoint as with all Asana API endpoints, meaning a user’s private tasks will be filtered out if the API-authenticated user does not have access to them.* *Note: Both complete and incomplete tasks are returned by default unless they are filtered out (for example, setting `completed_since=now` will return only incomplete tasks, which is the default view for “My Tasks” in Asana.)*
435
+
* Returns the compact list of tasks in a user’s My Tasks list. *Note: Access control is enforced for this endpoint as with all Asana API endpoints, meaning a user’s private tasks will be filtered out if the API-authenticated user does not have access to them.* *Note: Both complete and incomplete tasks are returned by default unless they are filtered out (for example, setting `completed_since=now` will return only incomplete tasks, which is the default view for “My Tasks” in Asana.)*
436
436
* @param userTaskListGid Globally unique identifier for the user task list. (required)
437
437
* @param completedSince Only return tasks that are either incomplete or that have been completed since this time. Accepts a date-time string or the keyword *now*. (optional)
438
438
* @param offset Offset token. An offset to the next page returned by the API. A pagination request will return an offset token, which can be used as an input parameter to the next request. If an offset is not passed in, the API will return the first page of results. 'Note: You can only pass in an offset that was returned to you via a previously paginated request.' (optional)
@@ -623,7 +623,6 @@ public ItemRequest<JsonElement> removeTagForTask(String taskGid) throws IOExcept
623
623
* @param projectsNot Comma-separated list of project IDs (optional)
624
624
* @param projectsAny Comma-separated list of project IDs (optional)
625
625
* @param portfoliosAny Comma-separated list of portfolio IDs (optional)
626
-
* @param assigneeStatus One of `inbox`, `today`, `upcoming`, or `later` (optional)
627
626
* @param assigneeNot Comma-separated list of user identifiers (optional)
628
627
* @param assigneeAny Comma-separated list of user identifiers (optional)
629
628
* @param resourceSubtype Filters results by the task's resource_subtype (optional)
@@ -633,7 +632,7 @@ public ItemRequest<JsonElement> removeTagForTask(String taskGid) throws IOExcept
633
632
* @return CollectionRequest(Task)
634
633
* @throws IOException If we fail to call the API, e.g. server error or cannot deserialize the response body
* @param offset Offset token. An offset to the next page returned by the API. A pagination request will return an offset token, which can be used as an input parameter to the next request. If an offset is not passed in, the API will return the first page of results. 'Note: You can only pass in an offset that was returned to you via a previously paginated request.' (optional)
47
+
* @param limit Results per page. The number of objects to return per page. The value must be between 1 and 100. (optional)
48
+
* @param optFields Defines fields to return. Some requests return *compact* representations of objects in order to conserve resources and complete the request more efficiently. Other times requests return more information than you may need. This option allows you to list the exact set of fields that the API should be sure to return for the objects. The field names should be provided as paths, described below. The id of included objects will always be returned, regardless of the field options. (optional)
49
+
* @param optPretty Provides “pretty” output. Provides the response in a “pretty” format. In the case of JSON this means doing proper line breaking and indentation to make it readable. This will take extra time and increase the response size so it is advisable only to use this during debugging. (optional)
50
+
* @return ItemRequest(Team)
51
+
* @throws IOException If we fail to call the API, e.g. server error or cannot deserialize the response body
0 commit comments