function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
YCRYCR 

API Calls Count

Hi All


I am using sforce API to query records from a object that contains around 100,000 records. To fetch all records I am using queryMore to get records in a batch of 200.

Now my query is that is this count API calls as 1 or multiple of batches? means to fetch all records, queryMore get these in (100,000/200=500) batches. So in this case count of API calls is 1 or 500?


Please suggest

start_sstart_s

Hi,

 

In your case count of API calls is 500. I guess limit of API call is 5000.

YCRYCR
Thanks