How to perform NOT LIKE operation while calling a REST API
Hi
We are calling opportunities in our flow which requires only the SalesStages other than the first. We have different kinds of sales Methods. So we have multiple first sales stages. We have a pattern in the name structure like 01-Stage1Method1 , 02-Stage2 , 01-Stage2Method2 etc.. So how to get records other than "01-Stage1 " SalesStages.
I am trying the REST Api like below:
/crmRestApi/resources/latest/opportunities/?q=SalesStage IS NOT LIKE "01-%"
But this is not returning any data even though there is data. Please help in how to use the NOT LIKE in REST APIs
Thanks in Advance.