pub async fn get_tasks(
    configuration: &Configuration,
    opt_pretty: Option<bool>,
    opt_fields: Option<Vec<String>>,
    limit: Option<i32>,
    offset: Option<&str>,
    assignee: Option<&str>,
    project: Option<&str>,
    section: Option<&str>,
    workspace: Option<&str>,
    completed_since: Option<String>,
    modified_since: Option<String>
) -> Result<InlineResponse20023, Error<GetTasksError>>
Expand description

Returns the compact task records for some filtered set of tasks. Use one or more of the parameters provided to filter the tasks returned. You must specify a project or tag if you do not specify assignee and workspace. For more complex task retrieval, use workspaces/{workspace_gid}/tasks/search.