Hi, I am integrating Asana with 3rd party tool using REST API, I could successfully search for a Task matching a custom field value =Active,
(Available Custom field values are : Active, InActive, Archive)
I am extending the use case to match the custom field value matching ‘Active’ or ‘Inactive’, Does Asana support OR condition, if it supported, please share a sample API to validate.
Unfortunately there is no “or” capability for retrieving custom field values. You have two choices: either do multiple search queries, one for each desired value; or do one query using the is_set option on that custom field which will return tasks where the field is set to any value, and then do the filtering in your code.