Detailed search for a task

Hello,

I want to search for tasks in a workspace. For this I use the following call with Python:

`result = client.tasks.search_tasks_for_workspace(workspace_gid, {‘text’: ‘this is a task’}, opt_pretty=True)"

In the documentation the call is described as follows:
?text string - Performs full-text search on both task name and description

Is it possible to explicitly search what the title of the task is (without searching in the description) and also optionally which parent task this task belongs to if it is a subtask.

Thanks a lot!

Best regards
Björn

Hi,

Not that I know of.

In the opt_fields you can ask for parent.gid I believe.

Let me know if this helps.

1 Like