Embedded Service Deployment Chat in Salesforce

Salesforce

How to create Case from Einstein BOT only when Chat is transferred to an agent and change the owner in Salesforce using OmniToolKit?

1. Create the following Apex class.Apex Controller:public class ChatAcceptedController {        @AuraEnabled    public static void updateCase( String strChatTranscriptId, String strUserId ) {                LiveChatTranscript objChatTranscript = [ SELECT Id, CaseId ....

Salesforce

Salesforce Pre Chat for Embedded Service using Lightning Aura Component

Sample Code: Aura Component: <aura:component implements="lightningsnapin:prechatUI">     <lightningsnapin:prechatAPI aura:id="prechatAPI"/>     <aura:handler name="init" value="{!this}" action="{!c.onInit}" />     <aura:attribute name="startBool" type="Boolean" default="false"/>     <aura:attribute name="errorBool" type="Boolean" default="false"/>     <aura:attribute name="firstName" type="Boolean" default="false"/> ....