CRM - Operators available while Searching Records

CRM - Operators available while Searching Records

Hi!

Because there's a records limit of 200 records that we can fetch from both functions : getRecords(...) and searchRecords(...), I want specify the critera of my search.

In the documentation available for the searchRecords(...) function : https://www.zoho.com/deluge/help/crm/search-records.html. There's only two operators available : equals and start_with. In my case, I would like to use a negative operator to be able search any records NOT EQUALS to a status because I have more than 10 status and we are limited to 10 operations in the criteria argument. So, my goal is to write something like that:
  1. salesOrders = zoho.crm.searchRecords("Sales_Orders", "(Status:not_equals:Closed)");
I tried those combinaisons : not_equals, nequals, notequals, not, neq, ne, etc...

Can you please help me?