I need to query tables in ServiceNow via its REST API while using multiple conditions grouped as following:
( (Condition1 AND Condition2) OR (Condition3 and Condition4) ) AND Condition5 AND Condition6
Does anyone know if this is possible, and if so, how? I've looked into the documentation but I'm not able to understand if it explains how to solve my problem.
Edit 1: I forgot to mention that I did try using parenthesis in my REST calls but it has not worked.
Thanks,