HOW TO GET LARGE SETS OF DATA USING BULK API IN SALESFORCE THROUGH WORKBENCH

 


BULK API IN SALESFORCE THROUGH WORKBENCH


What is Bulk API?

The Bulk API is the concept of the salesforce in which we can get a large amount of data by making a Rest call through postman or workbench. This salesforce feature is used when we want to insert, delete or read large amounts of data. It is a programmatic approach to achieve bulk API 2.0. It is good to have more than 2,000 records to be executed. It executes data asynchronously. This API is enabled by default in all Salesforce Editions. The “API Enabled” permission must be enabled.


When to Use Bulk API?

Bulk API is a REST-based API and it is used to process large sets of data. You can use it to delete, query, insert, update or load large data sets by submitting batches asynchronously.

 In the background, salesforce uses batch concepts to process the data.



Bulk API 2.0 Query


Bulk query jobs enable asynchronous processing of SOQL queries. They’re designed to handle queries that return large amounts of data (10,000 records or more).


Learn about Bulk API 2.0 availability, supported methods, and limits.


Availability:

Query jobs in Bulk API 2.0 are available in API version 47.0 and later.


Comments

Popular posts from this blog

System.NullPointerException: Attempt to de-reference a null object in JSON Parsing Salesforce.

Send Email through Pardot API in Salesforce Apex