Block Salesforce Login URL Redirect
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 ....
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. ....
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 ....
Salesforce Pause element in the Flow pauses the current execution of the Flow. Sample Flow with Pause Element: We can monitor Salesforce Paused Flow Interviews using the following: 1. Time-Based ....
Salesforce Trailblazer Mentorship program helps newbies and job seekers to one-on-one and group mentorship opportunities. Experienced Salesforce Trailblazers will help the newbies and job seekers to attain their goals. Check ....
Salesforce Presence Configurations are stored in PresenceUserConfig entity. Use SOQL query on PresenceUserConfig entity to query the Salesforce Presence Configurations. SELECT Id, Capacity, DeveloperName, PresenceStatusOnDeclineId, PresenceStatusOnPushTimeoutId FROM PresenceUserConfig For additional ....