Detect text language using JavaScript
Using language API from a third party, we can detect the string or text language in JavaScript. In this Blog Post, I am using Lingvanex for the language detection. Sample ....
Using language API from a third party, we can detect the string or text language in JavaScript. In this Blog Post, I am using Lingvanex for the language detection. Sample ....
We can do Salesforce Messaging For In-App and Web Message Translation in real-time. lightning:conversationNewMessage can be used to fetch the visitor messages. Using Translation API, we can translate the message ....
Using Salesforce Messaging for In-App and Web REST API, we can invoke Salesforce Agentforce using REST API. 1. Setup Salesforce Messaging for In-App and Web REST API. https://www.infallibletechie.com/2024/11/salesforce-messaging-for-in-app-and-web-rest-api.html 2. In ....
Configurations in Salesforce for Messaging for In-App and Web REST API: 1. Create a Messaging Channel of type "Messaging for In-App and Web". 2. Activate the Messaging Channel. 3. Create ....
Exception: We can't upload your photo right now. Please wait a few minutes and try again. Resolution: Go to Salesforce Setup. Go to Sites in the Setup. Select the Site. ....
Using Hidden Pre-Chat Hidden fields, we can pass data to the Omni-Channel Flow. Next, in the Omni-Channel Flow, we can update the Messaging Session record with the Pre-Chat Hidden Fields. ....
To pass URL parameters to Salesforce Screen Flow in Experience Cloud Site, we have to configure the query parameter in the Experience Cloud Site Builder Flow component configuration. Please check ....
We can handle Opportunity and Opportunity Product creations using the Salesforce Agentforce. In this Blog Post, I have used Apex Agent Action to handle the record creations. To setup Messaging ....
SOQL to find Products without Price Book Entries: SELECT Id, ProductCode FROM Product2 WHERE Id NOT IN ( SELECT Product2Id FROM PricebookEntry WHERE Pricebook2Id = '01sSB000006IC45YAG' ) Sample Apex Code ....
@InvocableMethod annotation helps to invoke apex class and method from the Salesforce Agentforce Apex Action. @InvocableVariable annotation can be used to pass multiple parameters from the Salesforce Agent Action to ....