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
Praful_GuptaPraful_Gupta 

apex trigger future method callout and callout limits

I have a query:

If an apex trigger is calling a future method that is making an HTTP REST  callout.
Would the 100 call-out limits apply or not (considering trigger has 200 records in current context )?

I came across the article(will it work for 200 records) : https://www.forcetalks.com/blog/salesforce-rest-api-integration-with-veriphone/

Carlos ArribasCarlos Arribas
Hi,

It would apply the 100 callout limit (per transaction) because this limit is the same for Synchronous and Asynchronous operations:

https://developer.salesforce.com/docs/atlas.en-us.salesforce_app_limits_cheatsheet.meta/salesforce_app_limits_cheatsheet/salesforce_app_limits_platform_apexgov.htm

If this solution helps, Please mark it as best answer.

Thanks,