Generate Salesforce refresh_token
In order to generate the Salesforce refresh_token(refresh token), we have to first generate the Authorization Code. Using the Authorization Code, we can make subsequent POST request to get the Salesforce ....
In order to generate the Salesforce refresh_token(refresh token), we have to first generate the Authorization Code. Using the Authorization Code, we can make subsequent POST request to get the Salesforce ....
To import/load/upload records using Salesforce Lightning Web Component, lightning-file-upload tag can be used to allow users to upload the file and Apex can be use to insert the records. Sample ....
apex:repeat tag can be used to iterate map data type in Salesforce Visualforce page. Sample Code: Visualfore Page: <apex:page controller="SampleVFPageController"> <apex:repeat value="{!mapAccNameContactList}" var="objAcc"> Account Name: {!objAcc}<br/> <apex:repeat value="{!mapAccNameContactList[objAcc]}" var="objCon"> Contact ....
To assign or invoke or trigger Assignment and Auto-Response Rules to Case record using Apex in Salesforce, assignmentRuleHeader.useDefaultRule and emailHeader.triggerAutoResponseEmail in Database.DMLOptions should be set to true. assignmentRuleHeader.useDefaultRule in Database.DMLOptions ....
For Salesforce Work Summaries for Email, Einstein Email Summaries component should be added to the Lightning Record Page. Email-to-Case should also be enabled. Use the following steps for setting up ....
Using Salesforce Flow, we can send Custom Notifications. Please check the following for steps for your reference. 1. Create a Custom Notification. In this example, I have created one for ....
standard__quickAction can be used in the Salesforce Lightning Web Component to invoke Email Quick Action. Create an Email Quick Action on the Lead Object to use it in the Lightning ....
Option 1: From Setup, in the Quick Find box, enter Apex Settings, and then enter a value (1–600 seconds) for Default minimum enqueue delay (in seconds) for queueable jobs that ....
We can make use of Add Screen Pop Flow element in the Salesforce Omni-Channel Flow to open the Account record as subtab to the Case record when routed using the ....
JSON.deserialize() can be used in Salesforce Apex to parse Array payload in Apex REST API. Please check the following Apex Class for reference. Sample Apex Class: @RestResource( urlMapping='/ApexRESTAPI/' ) global ....