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
# workspace_gid - [str] (required) Globally unique identifier for the workspace or organization.
# text - [str] Performs full-text search on both task name and description
# resource_subtype - [str] Filters results by the task's resource_subtype
# assignee_any - [str] Comma-separated list of user identifiers
# assignee_not - [str] Comma-separated list of user identifiers
# portfolios_any - [str] Comma-separated list of portfolio IDs
# projects_any - [str] Comma-separated list of project IDs
# projects_not - [str] Comma-separated list of project IDs
# projects_all - [str] Comma-separated list of project IDs
# sections_any - [str] Comma-separated list of section or column IDs
# sections_not - [str] Comma-separated list of section or column IDs
# sections_all - [str] Comma-separated list of section or column IDs
# tags_any - [str] Comma-separated list of tag IDs
# tags_not - [str] Comma-separated list of tag IDs
# tags_all - [str] Comma-separated list of tag IDs
# teams_any - [str] Comma-separated list of team IDs
# followers_not - [str] Comma-separated list of user identifiers
# created_by_any - [str] Comma-separated list of user identifiers
# created_by_not - [str] Comma-separated list of user identifiers
# assigned_by_any - [str] Comma-separated list of user identifiers
# assigned_by_not - [str] Comma-separated list of user identifiers
# liked_by_not - [str] Comma-separated list of user identifiers
# commented_on_by_not - [str] Comma-separated list of user identifiers
# due_on_before - [date] ISO 8601 date string
# due_on_after - [date] ISO 8601 date string
# due_on - [date] ISO 8601 date string or `null`
# due_at_before - [datetime] ISO 8601 datetime string
# due_at_after - [datetime] ISO 8601 datetime string
# start_on_before - [date] ISO 8601 date string
# start_on_after - [date] ISO 8601 date string
# start_on - [date] ISO 8601 date string or `null`
# created_on_before - [date] ISO 8601 date string
# created_on_after - [date] ISO 8601 date string
# created_on - [date] ISO 8601 date string or `null`
# created_at_before - [datetime] ISO 8601 datetime string
# created_at_after - [datetime] ISO 8601 datetime string
# completed_on_before - [date] ISO 8601 date string
# completed_on_after - [date] ISO 8601 date string
# completed_on - [date] ISO 8601 date string or `null`
# completed_at_before - [datetime] ISO 8601 datetime string
# completed_at_after - [datetime] ISO 8601 datetime string
# modified_on_before - [date] ISO 8601 date string
# modified_on_after - [date] ISO 8601 date string
# modified_on - [date] ISO 8601 date string or `null`
# modified_at_before - [datetime] ISO 8601 datetime string
# modified_at_after - [datetime] ISO 8601 datetime string
# is_blocking - [bool] Filter to incomplete tasks with dependents
# is_blocked - [bool] Filter to tasks with incomplete dependencies
# has_attachment - [bool] Filter to tasks with attachments
# completed - [bool] Filter to completed tasks
# is_subtask - [bool] Filter to subtasks
# sort_by - [str] One of `due_date`, `created_at`, `completed_at`, `likes`, or `modified_at`, defaults to `modified_at`
# sort_ascending - [bool] Default `false`
# options - [Hash] the request I/O options
# > opt_fields - [list[str]] 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.
# > opt_pretty - [bool] 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.
GET /workspaces/{workspace_gid}/tasks/search
allows you to search based on custom field attributes - see the 'Custom field parameters' section here: https://developers.asana.com/docs/search-tasks-in-a-workspaceUnfortunately, the generated ruby-asana SDK does not support these parameters, forcing people to hand-craft their API requests:
ruby-asana/lib/asana/resources/gen/tasks_base.rb
Lines 329 to 392 in ae66d87
The text was updated successfully, but these errors were encountered: