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
SKT CloudComputingSKT CloudComputing 

API calls made during 1 million record insertion.

I have below two queries regarding this.

Query1- How many API calls will be made in we insert 1 M records using Normal API.


Query2- How many API calls will be made in we insert 1 M records using Bulk API.

Query 3- Is there any fix formula to calculate API calls?

 
Best Answer chosen by SKT CloudComputing
SKT CloudComputingSKT CloudComputing
Query1- In case of Normal(SOAP) API.
API calls= 1M/200(Batch Size)


Query2- In case of Bulk API.

API calls= 1m/10000(batch Size)

I want to get it confirmed if someone has tested this earlier.

Thanks
SKT