I’m working with the Ruby Gem and having a lot of trouble turning the documentation into code. I am trying to search for tasks in a workspace where a custom field has a specific value. I have tried variations of:
@asana.tasks.search_tasks_for_workspace(workspace_gid: “workspace_gid” , options: { “custom_fields.custom_field_gid.value” : “Sara” } ) and always receive:
Asana::Errors::InvalidRequest: You must specify at least one search filter.
I have tried moving the custom field specification outside of options, as well as inside of params inside options. What is the proper way to do this?