Category: API
Type of external salesforce connect
Salesforce supports 3 way to connect external system using Salesforce Connect oData 2.0 or oData 4.0 Cross Org Adapter Custom Adapter using Apex Connector Framework oData 2.0 or oData 4.0: oData is Open Data Protocol. REST based integration. This is standard way to connect your external system if Salesforce supports or External system supports.… Continue reading Type of external salesforce connect
How to monitor API Usage?
There are 3 way you can analysis the API Usage Last 24 hours usage Notification for API Usage API Usage Report Last 24 hours usage: Goto setup -> search "System Overview" in the QuickFind text box --> Click "System Overview" Notification for API Usage: Goto setup -> search "API Usage Notification" in the QuickFind text… Continue reading How to monitor API Usage?
Salesforce SOAP API Limitation
Limit's are 10 concurrent query per user 25 concurrent calls in production. 1 Million - Daily API call in production. 200 record count in create , update request.
What gives standard and custom SOAP difference in Salesforce?
Standard WSDL will have "/services/Soap/c/35.0" in the URL. Custom WSDL will have "/services/Soap/class/ApexClassName" in the URL.
Mru(most recent update)Header API Call
SOAP Header called mruUpdate is used to update most recent update record in the Recent Item Section. By default false. If you want to see the recent record in the recent item section then you need to sent that flag to TRUE. SOAP Request XML: <urn:MruHeader> <urn:updateMru>true</urn:updateMru> </urn:MruHeader> Sample Code JAVA or .Net:… Continue reading Mru(most recent update)Header API Call
Salesforce Two SOAP API
Salesforce offers you 2 type of SOAP API Enterprise WSDL Partner WSDL Enterprise WSDL: Strongly typed API - It represents your organization standard and custom objects and fields and functions. Easy to Use - You can reference your org objects and fields directly. Generate code call it. This make it very handy. Single organization solution… Continue reading Salesforce Two SOAP API
Authenticating SOAP API User
Salesforce by default authenticating based on User Name and Password + Security token but you can add 2 more layer authenticating user to access data or get into salesforce system. Session ID - You have to get Session Id from Salesforce using your user name and password+securitytoken. Profile - Objects, Field level security. IP Range… Continue reading Authenticating SOAP API User
Force.com integration related services
REST API SOAP API Salesforce Connect Apex Data Loader Bulk API Platform Cache External Object Streaming API Apex Callout Outbound Messaging
Pull List of record from sObject using SFDC Standard REST API
We can use standard REST API to pull list of sObject records to External system from salesforce. Please find below REST API to pull list of Account based on Name and Website Production URL: https://login.salesforce.com/services/data/v37.0/query?q=SELECT+Id,name+FROM+Account+WHERE+name='Sathish'+AND+website='www.sathishsfdc.wordpress.com' Sandbox URL: https://test.salesforce.com/services/data/v37.0/query?q=SELECT+Id,name+FROM+Account+WHERE+name='Sathish'+AND+website='www.sathishsfdc.wordpress.com'