How to download Salesforce Event Log File using REST API?
We can download Salesforce Event Log Files using the REST API. First, we have to create a Connected App in Salesforce since we are going to use the REST API. ....
We can download Salesforce Event Log Files using the REST API. First, we have to create a Connected App in Salesforce since we are going to use the REST API. ....
We can insert Lead record using standard Salesforce REST API. By doing a POST request to https://{Your Domain}.my.salesforce.com/services/data/v58.0/sobjects/Lead/, we can easily insert Salesforce Lead record with Session Id. Check the following ....
We can make a GET Request to https://{Your_Domain_URL}/services/data/v57.0/sobjects/case/{Case_Record_Id} using Access Token to fetch Salesforce Case record. 1. Create a Connected App in Salesforce. Callback URL should be https://{Your Domain}.my.salesforce.com/services/oauth2/callback Example: ....
The User needs "Bulk API Hard Delete" Permission to make Salesforce BULK API V1 Hard Delete request. 1. Create a Permission Set with "Bulk API Hard Delete" Permission. Assign the ....
https://{Your_Domain_URL}/services/data/v56.0/limits/recordCount can be used to find the number of records in each Salesforce Object using REST API. Workbench: Postman Client: https://youtu.be/M9e5PhzqRx0
Sub-Query can be used to Parent and Child records in Salesforce SOQL using REST API. Example: /services/data/v57.0/query/?q=SELECT+Name+,+(+SELECT+Name+FROM+Contacts+)+FROM+Account+WHERE+Id+=+'0013t00002XXRyDAAX' Workbench: Postman: https://youtu.be/367LYcU6vPs
Event Relay can be used to send Salesforce Platform Events to Amazon EventBridge. 1. Create a Platform Event in Salesforce. 2. Create a Connected App in Salesforce. Callback URL should ....
We can insert PriceBookEntry record using Salesforce REST API. 1. Create a Connected App in Salesforce. Callback URL should be https://{Your Domain}.my.salesforce.com/services/oauth2/callback Example: https://test-ec-dev-ed.develop.my.salesforce.com/services/oauth2/callback 2. Get the Access token. Endpoint ....
Using PostMan client, we can make Salesforce Bulk API V1 create job, create batch, check batch status, close job and check job status requests. 1. Create a Connected App in ....
GET Request to https://{YOUR_DOMAIN_URL}/services/data/v56.0/limits/ can be used to find Salesforce Storage Usage using REST API. 1. Create a Connected App in Salesforce. Callback URL should be https://{Your Domain}.my.salesforce.com/services/oauth2/callback Example: https://test-ec-dev-ed.develop.my.salesforce.com/services/oauth2/callback ....