Find your content:

Search form

You are here

Limitation on SOAP API calls in Enterprise edition of SFDC

 
Share

I am building an integration between my company's Drupal CMS and our SFDC CRM. I will be using the SFDC SOAP API to accomplish this.

The idea is to do a query via the soap API every time a user logs into our Drupal web site and check for status' set in a corresponding contact record in sales force. This status will in a sense provide an access permission that I want to grant in my Drupal CMS.

My question is this, if I rely upon this Soap API to provide these permssions, will I run into a max allowed API calls via the Soap client?

Does Salesforce monitor the amount of Soap API calls I make in a given month, week, day?

Will they cut the access after a certain amount?

Bare in mind that my company pays for Enterprise SFDC and so far all of the Soap API apps I have integrated to our SFDC instance have not had any problems with access limitations.

I plan to contact SFDC directly, but I was hoping someone here may have some experience with this kind of integration question.

Thanks in advance for any info you may provide.


Attribution to: Ryan S

Possible Suggestion/Solution #1

Probably the best way to find out how close to the limits you might run is to check out your current usage. You can find it under "Company Information" (under Company Profile) in Setup. The API limits are on a 24 hour basis.

If you are currently using the API, you can use that as a baseline and potentially project based on the number of users.

And obviously I'd recommend doing whatever you can to limit the callout when it isn't necessary.


Attribution to: joshbirk

Possible Suggestion/Solution #2

As far as the Salesforce SOAP API is concerned, 1 API call is a single HTTP request to the API.

No matter how trivial or complex the API call is, one API call is consumed. This is also true for the ReST API.

Every API call is consumed for 24 hours. That means that 24 hours after your API call was made, your API call is "freed" and can be used again.

As johsbirk stated, you can see your API call limit in Setup > Company Information.

If you find that this type of integration with Salesforce consumes too many API calls, perhaps you could cache the information within Drupal for a certain period of time?


Attribution to: GuiSim

Possible Suggestion/Solution #3

Yes, they will cut access to the API if you hit the limit. But it may only last for an hour or so. From my experience it's in a revolving 24 hour cycle. So each hour some API Calls will free up as it checks the previous 24 hours period.

I'd recommend setting up outbound messages into your CMS DB or a DB to run alongside the CMS and send the fields required into it so that you won't have to worry about API limits down the road if things get hectic and you may not have time to get back to it.


Attribution to: Wizno
This content is remixed from stackoverflow or stackexchange. Please visit https://salesforce.stackexchange.com/questions/90

My Block Status

My Block Content