Question
Is it possible to check the number of API calls executed in each operation of the Salesforce connector?
Also, please tell me the specifications of the Salesforce connector related to API calls.
Answer
The Salesforce Connector does not have a feature to check the number of API calls executed in each operation.
When connecting to Salesforce from HULFT Square, the process is basically as follows:
Login → Data acquisition (describe) → Processing (create, query, etc.)
The number of API calls varies depending on a transaction and batch size settings.
-Batch size
In the Read Records of the Salesforce connector, the number of processed data can be divided into multiple numbers by setting the [Batch size].
For example, if the Read Records reads 10,000 data items and the [Batch Size] is set to 2000, the data items will be divided into 5 API calls.
Therefore, the [Batch Size] affects the number of API calls for the component.
-Transaction
In a same transaction, login is not executed again between the components of the Salesforce connector that specify same resources because the session information is reused.
In different transactions, login is executed once with the first component of the Salesforce connector in each transaction.
The number of API calls conforms to the Salesforce specification.
Please refer to the Salesforce website below for details.
API Call Basics
https://developer.salesforce.com/docs/atlas.en-us.api.meta/api/calls.htm
Comments
0 comments
Article is closed for comments.