Greetings,
we are currently asked to update some fields' records on our Leads table, based on a CSV file (+25K leads records) that we would parse and upload to the leads table.
Problem is, after reading Zoho CRM API Methods, we've noticed there is no existing method allowing us to fetch (many) records by providing a list of IDs.
There is indeed from the API methods :
Basically, we'd like to be able to retrieve all records matching a list of IDs, because otherwise we would encounter the API limit rate to quickly.
Indeed, we need to
A) Retrieve a list of records by ID, according to the CSV file
B) Read them and compute some conditional edits internally
C) Mass update theses
D) Do it again (goto A) until the end
Something like a IN SQL clause :
SELECT * from LEADS where LEADID IN('ID0', 'ID1');
Is it possible to do something similar (a getRecordsByIds method...), without being asked to use a single record method, and explode our call API limit ?
Thank you very much for your help.
Best regards.