getRecords sort limitation 10000 records.
When calling getRecords on a module that contains more than 10000 records and attempting to sort by a field the return is limited to 10000 records it seems.
contacts = zoho.crm.getRecords("Contacts",1,1,{"sort_order":"desc","sort_by":"ContactID"});
I am attempting to get the value of "ContactID" with the highest value. However I am only having '10000' returned.
Any suggested solution would be appreciated.