When to use Bulk API instead of REST API in Salesforce?
REST API is used when the number of records are very less. Bulk API is used when we are going to implement for large set of data. Bulk API also ....
REST API is used when the number of records are very less. Bulk API is used when we are going to implement for large set of data. Bulk API also ....
If we get Http BAD request 400 error, the problem is surely from our request. Check the endpoint, body, setHeader() and so on. 1. Check the URL. 2. Try HTTP ....
Sample Code:global class SubscribeOrUnsubscribeLead { webservice static String subscribeLead(Id leadId) { List<EntitySubscription> listEntitySub = new List<EntitySubscription>(); listEntitySub = [SELECT Id ....
If you face, "Missing redirect_uri parameter error from Facebook" issue, add redirect_uri parameter to the end point URL. The redirect_uri should be the callback URL. Get the callback URL and ....
Sample Program: package packageForREST; import java.io.BufferedReader; import java.io.InputStream; import java.io.InputStreamReader; import java.io.IOException; import java.io.UnsupportedEncodingException; import org.apache.http.Header; import org.apache.http.HttpResponse; import org.apache.http.client.HttpClient; import org.apache.http.client.methods.HttpPost; import org.apache.http.entity.StringEntity; import org.apache.http.impl.client.DefaultHttpClient; import org.apache.http.message.BasicHeader; import org.apache.http.util.EntityUtils; ....
Sample Program: package packageForREST; import java.io.BufferedReader; import java.io.IOException; import java.io.InputStream; import java.io.InputStreamReader; import java.io.UnsupportedEncodingException; import org.apache.http.Header; import org.apache.http.HttpResponse; import org.apache.http.client.HttpClient; import org.apache.http.client.methods.HttpGet; import org.apache.http.client.methods.HttpPost; import org.apache.http.entity.StringEntity; import org.apache.http.impl.client.DefaultHttpClient; import org.apache.http.message.BasicHeader; ....
RESTREST's sweet spot is when you are exposing a public API over the internet to handle CRUD operations on data. REST is focused on accessing named resources through a single ....
Different APIs supported by Salesforce.com are REST API Accessing objects in your organization using REST. SOAP API Integrating your organization’s data with other applications using SOAP. Chatter REST API Accessing Chatter feeds ....
Different APIs supported by Salesforce.com are REST API Accessing objects in your organization using REST. SOAP API Integrating your organization’s data with other applications using SOAP. Chatter REST API Accessing Chatter feeds ....
Salesforce provides REST API to Create, Update and Delete records. We can also define Apex as a REST Service to Create, Update and Delete records in Salesforce. Example: Follow the ....