Is there any way I can prevent a certain type of data from being logged in the Tracker Store?

I have a very long string which is base64 but I don’t want to save it in the Tracker Store since it takes a lot of space. Is there a way I can selectively prevent that string from being stored?

Hi @PhelimonSarpaning - welcome to the forum!

Makes sense that you don’t want to store this string in memory for each user. Perhaps you can write it to an API and fetch it later? what do you need this string for? I’m guessing to execute a custom action. In that case your action would start by reading the string from an API and then using it right away

thanks