You need to sign in to do that
Don't have an account?
Best way to call external API more then 300 times in Apex?
What is the best way to call external API in loop more then 300 times.
function readOnly(count){ }
You need to sign in to do that
Don't have an account?
Why do you want to call external API for more than 300 times, there is a chance that you might hit API limits. You can use batch apex to process the records in chunks using API's.
https://developer.salesforce.com/docs/atlas.en-us.apexcode.meta/apexcode/apex_batch_interface.htm
Please mark as Best Answer if above information was helpful.
Thanks,