Technology Blog Posts by Members
cancel
Showing results for 
Search instead for 
Did you mean: 
omheerani
Explorer
5,077
Dear Readers,

This is my first blog where I would like to share my experience on how to connect with SFDC via REST adapter using SFDC bulk API concept. (without BPM)

When to use Bulk API?

Bulk API is based on REST and is optimized for loading or deleting large sets of data. We can query, insert, update, upsert, or delete many records asynchronously by submitting batches. Salesforce processes batches in the background.  Bulk API is designed to make it simple to process data from a few thousand to millions of records.

 

Reference Links:

  1. https://salesforcecodex.com/salesforce/using-salesforce-bulk-api-v1/

  2. https://developer.salesforce.com/docs/atlas.en-us.api_asynch.meta/api_asynch/asynch_api_batches_get_...

  3. https://developer.salesforce.com/docs/atlas.en-us.api_asynch.meta/api_asynch/asynch_api_jobs_create....

  4. https://developer.salesforce.com/docs/atlas.en-us.236.0.api_asynch.meta/api_asynch/asynch_api_batche...

6 Comments