Hi all,
Using maskUrlFunction: function (urlPayload) … we can mask the url with some specific logic and it is well documented here https://support.gainsight.com/PX/Security/Enablement/Exclude_and_Mask_Tracked_Data
In a similar fashion, is it possible to mask an attribute element that is passed to Gainsight?
ex: When a user presses a link, gainsight receieves this in the element tree
{
“elementTree” : e
...
{
"tagName": "A",
"attributes": {
"class": "someClass”
"href": "/user/somePrivateIdThatShouldBeMasked”
"data-gainsight": "someUniqueGainsightId"
},
...
}
In this case somePrivateIdThatShouldBeMasked” is exposed which is something we don’t want. In this case is it posisble to mask “somePrivateIdThatShouldBeMasked”? Or don’t pass the “href” attribute at all?
Is there any good exmaple or documentation? Thanks!