I understand the threading Web Messaging Timeline value, is an org setting, i wonder is there anyway of disabling this at the individual deployment level?
Original Message:
Sent: 10-26-2023 18:45
From: Tony Freestone
Subject: Capture Web Messenger Clear Conversation event when User clicks the delete button
Hi Anwita -
The only way I can think of to eliminate that with the current state would be to disable the threading timeline for web messaging. I haven't tested it though.

------------------------------
Tony Freestone
Providence Health & Services
------------------------------
Original Message:
Sent: 10-26-2023 15:31
From: Anwita Acharya
Subject: Capture Web Messenger Clear Conversation event when User clicks the delete button
Thanks Tony for the suggestion. We are able to capture the clear conversation event successfully and bringing out form back. Below are few snippets we are using:
Genesys("subscribe", "MessagingService.conversationCleared", function(response)
{
var data = response.data;
console.log(data.class);
document.getElementById("myForm").style.display = "block";
document.getElementsByName("genesysMessengerLauncherFrame")[0].style.display="none";
});
However, we observed that if we Close the browser without clearing the conversation, then the Web Messenger window reappears automatically with all the last chat on re-opening the browser. Is there a way to prevent that, so that anytime a browser is closed, the Web Messenger will not come up on reopening the browser?
------------------------------
Anwita Acharya
Cognizant Technology Solutions India Private Limited
Original Message:
Sent: 10-25-2023 17:42
From: Tony Freestone
Subject: Capture Web Messenger Clear Conversation event when User clicks the delete button
Hi Anwita -
We are using the JS example below to subscribe to the Clear Conversation event and then resend two custom attributes in our training sandbox (IsAuthenticated and MessagingDeployment).
I'm sure you could re-purpose this and wrap it around your form launch code snippet. By replacing the "Genesys("command","Database.set",{messaging:{customAttributes:{IsAuthenticated: false,MessagingDeployment:"Web Messaging Training"}}});" code with your code snippet, it will bne launched any time the button is used.
Example -
=====================================
Genesys("subscribe", "MessagingService.conversationCleared", function(response) {
var data = response.data;
console.log(data);
Genesys("command","Database.set",{messaging:{customAttributes:{IsAuthenticated: false,MessagingDeployment:"Web Messaging Training"}}});
});
------------------------------
Tony Freestone
Providence Health & Services