[SalesForce] Callouts Limits Anyone

I have a Visualforce form that saves a custom object and send some fields to a REST web service in a controller method. I am using the good old httprequest to accomplish that and it works fine. This is not a @future method, so I am not supposed to be affected by the 200 call methods per license.

I know the governor limits for callouts are 10 per transaction. I am not worry about it since I only make one per transaction.

I could not find anywhere in the documentation if there are any limits of callouts we can do every 24 hs. Is there any limits on how many callouts we can do?

I want to believe that there are no limits, but sometimes Salesforce prove me wrong 🙂

Best Answer

The maximum number of asynchronous Apex method executions (Batch Apex, future methods, and scheduled Apex) per a 24-hour period is 250,000 or the number of user licenses in your organization multiplied by 200, whichever is greater

for more reference check this link