Note: This article only applies to Genesys Cloud CX customers using web messaging. If you are using web chat, see Chat-related tags.

Record a custom web event when a visitor rejects a messaging offer

This tag records a custom web event when a visitor rejects a messaging offer.

Tag

Genesys("subscribe", "Journey.ready", function(){  Array.prototype.forEach.call(document.querySelectorAll('cx-toaster button.cx-btn-default, .cx-toaster button.cx-button-close'), function (closeButton) {    closeButton.on('click', function () {      Genesys("command", "Journey.record", { eventName: "messagingoffer_rejected"});    });  });});