Hi All,
I wanted to understand if I send same field value in two different objects in and array with each of these objects containing other different fields, how does CJA interpret this data.
For example, if I sent an event to AEP which had an array field populated as below with a product id information,
{
"products": [
{
"id": "prodID123",
"count": 5,
"type": "new"
},
{
"id": "prodID123",
"count": 3,
"type": "old"
}
]
}
How will this data be reported in AEP/CJA?
- I'm assuming products.count against products.id value "prodID123" will show as 8, is that correct?
- If I create a segment for events which had only one product in them, will this event qualify for it based on unique products.id value "prodID123" or will it not qualify because products field has two objects in it?
- If I create a segment for events where products.type value is "new" and used it to fetch products.id data, will this return products.count as 5 against products.id value "prodID123" or will it return 8?
Thanks!