Standard v/s custom fields for tracking product information
Hi Team,
What could be the pros and cons if we tracked the product information in custom XDM fields instead of standard XDM fields for all commerce events. So instead of using this,
{
"productListItems": [
{
"SKU": "12345",
"name": "dummy product",
"priceTotal": 123.45,
"quantity": 1
}
]
}what if we used this,
{
"_tenatID": {
"product": [
{
"SKU": "12345",
"name": "dummy product",
"priceTotal": 123.45,
"quantity": 1
}
]
}
}What kind benefits we can get and what will be the drawbacks and limitations?
