Hi, @Victor Chen
I have a same use case to skip load history but in Engagement messenger which also embed a portable virtual agent client however Context we're injecting context load parameters in a different way as per Engagement messenger Docs, I tried to pass skip_load_history:true in both FeatureContext and 'param' object but it doesn't not like it. Do you have any recommendation on this please ?
I've tried to pass under both 'param' object and direct 'chatFeatureConext" as highlighted in Red. Engagement messenger custom feature code :
SN_CSM_EC.init({
moduleID:
"https://<instance_name>.service-now.com/#<module_id>",
loadFeature: chatFeatureContext(),
});
function chatFeatureContext(){
return {
feature: "CHAT",
load_active_only:true,
openOnLoad: false,
params: {
"language": "en",
"load_active_only": true,
"sysparm_queue" : "e25bf62d1b64b554bcc075939b4bcb13",
"sysparm_description":"long test description",
"sysparm_chat_endpoint":"customer_portal"
}
}
}