Parameters such as CategoryId, CategoryName can have multiple values at a time. How multiple values are delimited for Tealium? Would these be comma separated values or something else?

Silver Contributor
Silver Contributor
 
2 REPLIES 2

Parameters such as CategoryId, CategoryName can have multiple values at a time. How multiple values are delimited for Tealium? Would these be comma separated values or something else?

Employee Emeritus
Hey Nalini, As a rule of thumb any variable dealing with products that has multiple values should be an array of values: product_category : ["cat1","cat2","cat3"]; Other variables that do not deal with products can be comma separated: categoryId : "cat1,cat2,cat3"; However, if you want to report in a specific syntax you can use whatever delimiter you'd like. Let's say you want ">" as your delimiter in your reporting. You can use that as your delimiter instead of a comma (This only applies to non product variables): categoryId : "cat1>cat2>cat3"; Hope this helps.

Parameters such as CategoryId, CategoryName can have multiple values at a time. How multiple values are delimited for Tealium? Would these be comma separated values or something else?

Silver Contributor
Silver Contributor
Thanks very much! Really helpful
Public