Zendesk
Improve Zendesk support using Zipy session url to resolve customer issues quickly.
Last updated
<script>
setTimeout(() => {
const zipySessionUrl = window.zipy.getCurrentSessionURL();
zE("messenger:set", "conversationFields", [
{ id: <FIELD_ID>, value: zipySessionUrl }
]);
}, 1500);
</script>
<script type="text/javascript">
// Note : Insert this script after the Zendesk Installation script
// This script will add the Zipy session URL to the Zendesk conversation's "pages viewed" section
setTimeout(() => {
const zipySessionUrl = window.zipy.getCurrentSessionURL();
zE('webWidget', 'updatePath', {
url: zipySessionUrl,
title: "Zipy session"
});
},1500);
</script>