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

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

1. Create a Flow to create Case record. The flow will be called from the BOT when the Chat is transferred to the agent.
2.Create the following trigger on AgentWork entity.
trigger AgentWorkTrigger on AgentWork ( after update ) {

Set < Id > setChatIds = new Set < Id >();

for ( AgentWork objAWT : trigger.new ) {

String strWorkItemId = objAWT.WorkItemId;

if ( objAWT.AcceptDateTime != null && trigger.oldMap.get( objAWT.Id ).AcceptDateTime == null && strWorkItemId.startsWith( ‘570’ ) ) {

setChatIds.add( objAWT.WorkItemId );

}

}

if (setChatIds.size() > 0 ) {

List < Case > listCases = new List < Case >();

for ( LiveChatTranscript objLCT : [ SELECT Id, OwnerId, CaseId FROM LiveChatTranscript WHERE Id IN: setChatIds AND CaseId != null ] ) {

listCases.add( new Case( Id = objLCT.CaseId, OwnerId = objLCT.OwnerId ) );

}

if ( listCases.size() > 0 ) {

update listCases;

}

}

}

3. Call the flow from BOT from Transfer to Agent Dialog.
Output:
 

Leave a Reply