Beginner Guide to Salesforce Integration

External systems can load and retrieve the data from Salesforce Org using the SFDC APIs.

In this course, you will understand the structure of the Objects, Apps, and Tabs.  You will know how to create Custom objects and create  fields and their relationships.  Create your own app to display your objects in that app. Create tabs that can be added to your app and its displays like tabs.

What you’ll learn

  • Creating Custom objects, Apps and tabs in Salesforce..
  • Configuring the Apps to add different tabs..
  • Understand the client_id and client_secret and how to extract this data to share it with the clieint.
  • Update or insert the data to SFDC object from external system..
  • Load the data to SFDC using Bulk API provided by Salesforce.
  • Configuring postman to execute chain of API calls using the previous call output..

Course Content

  • Introduction –> 1 lecture • 1min.
  • Basic Components of Salesforce –> 3 lectures • 16min.
  • Create a connected App in Salesforce –> 2 lectures • 5min.
  • REST API call –> 3 lectures • 13min.
  • Set-up Post-man to create Chain requests –> 1 lecture • 10min.
  • Bulk Api call –> 6 lectures • 20min.
  • Bulk Query call to SFDC –> 4 lectures • 13min.
  • Enable Upsert operation –> 2 lectures • 10min.
  • Relationship between Objects –> 2 lectures • 14min.
  • REST API – Query Record –> 2 lectures • 26min.
  • Bulk API Call using Java Application –> 1 lecture • 20min.

Beginner Guide to Salesforce Integration

Requirements

In this course, you will understand the structure of the Objects, Apps, and Tabs.  You will know how to create Custom objects and create  fields and their relationships.  Create your own app to display your objects in that app. Create tabs that can be added to your app and its displays like tabs.

Once you are clear with the Salesforce objects, the next step is to understand how the data is stored in this object. How the data can be inserted into this object? How the data can be retrieved from this object?

The scope of this course is to know, what are the options available for external system to load data into salesforce object.  Depends on the business requirement data load can be loaded synchronously or asynchronously. In case of synchronous call, single record is inserted into SFDC, and salesforce provides API for this. If it is asynchrous, most probably we use Bulk API call to SFDC and SFDC has this API ready. In this, file containing multiple records, it can be thousands of records in a file, is passed to SFDC by using BULK API  provided by SFDC. Once the data is passed to SFDC, it is the job of Salesforce to read that record and insert in to the object. The SFDC takes its own time and load the data. If you call the SFDC with the API that gives the status of the data load, you will get the how many records processed and failed. But you need to set some sleep time before calling the Salesforce API to get the status because SFDC takes time to load data based on the number of records in the file.

Get Tutorial