How to check Salesforce Einstein BOT status using API?
Runtime Base URL in Salesforce Einstein BOT can be used to check Salesforce Einstein BOT status using REST API. 1. Go to Bot Builder. 2. Select Overview Page. 3. In Connections ....
Runtime Base URL in Salesforce Einstein BOT can be used to check Salesforce Einstein BOT status using REST API. 1. Go to Bot Builder. 2. Select Overview Page. 3. In Connections ....
lightning-card can be used for header and footer in Salesforce Lightning Web Component. Sample Code: Apex Class: public class AccountController { @AuraEnabled( cacheable = true ) public static List< Account ....
We can make use of Summary Formula in Salesforce Reports for Percentage Calculation. In the following example, I have calculated Salesforce Case Closures percentage per month by agents. 1. Go to ....
The difference between the $User.UITheme and $User.UIThemeDisplayed is that $User.UITheme variable returns the look and feel the user is supposed to see, while $User.UIThemeDisplayed returns the look and feel the ....
If your Salesforce Reps and Agents are using old login URL and want to avoid Salesforce redirection when the users uses old Login URL with wrong instance, then set the Redirect ....
We can make use of Salesforce Screen Flow for Experience Cloud Site Guest User. Sample Flow: 1. Go to Flows in Salesforce Setup. 2. Select "Edit Access" from the flow ....
In Salesforce Visualforce Page, we can get and set localStorage using JavaScript localStorage.setItem() and logcalStorage.getItem() methods. Sample Visualforce Page Code: <apex:page> <div id="txt"> </div> <script> localStorage.setItem( 'exampleItem', 'Testing' ); console.log( ....
We can find Data Storage and File Storage using Salesforce Apex. Option 1: System.OrgLimit can be used to find Data and File Storage in MB. Sample Code: Map < String, ....
To end Messaging Session due to inactivity in Salesforce Messaging for In-App and Web, enable "Automatically mark conversations inactive after a period of customer inactivity". 1. Creating a Messaging Component to ....
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. ....