How to send serialized events with processing rules
Hi,
We have several numeric and currency events that we set from a context data value with processing rules. I would like to serialize these events with an ID that comes from our site.
However, according to the documentation context data can only contain alphanumeric characters, underscores and dots. But the serialized event requires a colon. So for example, it doesn't seem to be possible to send context data like this, and map it to a serialized event:
s.contextData['tp.volume'] = '3500:1253abc',
s.contextData['tp.units'] = '3:12345abc',
So how to send a serialized event with processing rules? I could send the value and ID as two separate context data, but concatenating values in processing rules seems to be only supported for eVars, not events.