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
toninotriptoninotrip 

Apex SOAP Callin request/response limits

Hi all,
while glancing at Governor Limits documentation, I can find  the Maximum size of callout request or response ( 6MB / 12 MB based on context type), but I'm wondering if there are also limits for callin request/response (from external service to Salesforce). I guess that the only limits for a callin response are those about heap size, aren't they? 

Best Answer chosen by toninotrip
Richard Jimenez 9Richard Jimenez 9
Hi toninostrip,

Key Salesforce API limits are:
  1. Total API requests (calls) per 24-hour period for an organization
  2. Number of queries that a user can execute concurrently
You'll find the details about the Salesforce API limits here: https://developer.salesforce.com/docs/atlas.en-us.api.meta/api/implementation_considerations.htm

Also checkout: https://developer.salesforce.com/docs/atlas.en-us.200.0.salesforce_app_limits_cheatsheet.meta/salesforce_app_limits_cheatsheet/salesforce_app_limits_platform_api_overview.htm

Thanks,
Richard.