Create VoiceCall record using Salesforce Apex
1. Use the following SOQL to get the CallCenterId. SELECT Id, Name FROM CallCenter 2. Use the following Apex code to create the VoiceCall record. Sample Apex Code: insert new ....
1. Use the following SOQL to get the CallCenterId. SELECT Id, Name FROM CallCenter 2. Use the following Apex code to create the VoiceCall record. Sample Apex Code: insert new ....
Salesforce Chatter Groups are stored in CollaborationGroup object or entity. SOQL: SELECT Id, Name, CollaborationType FROM CollaborationGroup To mass update Salesforce Chatter Groups Type, then update the CollaborationType field on ....
We can run SOQLs on Profile and PermissionSet to find specific Permission enabled in Salesforce Profiles and Permission Sets. In the follow example, I am checking the permission "Author Apex". ....
Salesforce Mobile App Understanding Salesforce Mobile App Salesforce Mobile App is a dedicated application developed by Salesforce to better serve their customers, allowing them to manage their day-to-day sales, marketing, ....
Salesforce Permissions assigned to an user are stored in Permission Sets and Profiles. Profile and Permission Ses assigned to an user are stored in PermissionSetAssignment object/entity. So, by querying these two ....
We can use the TwoFactorMethodsInfo object/entity to query the users who haven't verified their email addresses yet in Salesforce. Admins or Users need the "Manage Multi-Factor Authentication in API" permission ....
Whenever Files or Documents are download, there will be an entry in ContentVersionHistory entity or object in Salesforce. So, we can query the ContentVersionHistory entity/object with Field value as contentVersionDownloaded ....
Salesforce Presence Statuses are stored in ServicePresenceStatus object/entity. So, we can query ServicePresenceStatus object/entity to get the Salesforce Presence Statuses. Sample SOQL: SELECT Id, MasterLabel, DeveloperName FROM ServicePresenceStatus https://youtu.be/jdQXakCK_uY
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 ....
UserAppInfo Entity in Salesforce stores the last Lightning app logged in to by the user. So, we can get the DurableId from it and use it for querying the App ....