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
KMKKMK 

Best ways to implement the Apex callouts with using Salesforce Web Services API

Hi All,

 

I am new for the implementing Web Services API calls in the Salesforce.

Please can any one mention best practices to implement the Apex callouts with using Salesforce web services API  to get the data from External Servers and from different objects with in Salesforce and Vice versa. and also mention best sources for documentation.

 

Thanks in advance.

kritinkritin

For both way communication you need to understand the Salesforce Enterprise API under Setup->App Setup->Develop->API

. this API WSDL will help you to integrate your External system. Here you need to just consume this API in the External server.

this will be External Server to SFDC.

and for SFDC to External server. You need to just develop an interface (Webservice) on External server. and need to consume this Webservice in SFDC.

KMKKMK

Hi Kritin,

Thanks for your response.

Please cound you send example template or code to call the API to do the operations on with in the Salesforce objects with using REST or Bulk API.