Hi @atulchavan ,
This is exactly what my question is, what do you mean by "multi event record"?
Wouldn't a record have only one event tied to it under xdm.eventType field, either Product View or Page View? Or am I misunderstanding something and this field can contain both Product View and Page View in a single record? If not, what is the role of data prep here because I'll anyway have to decide between Product View or Page View in xdm.eventType at the time of data ingestion.
Thanks
I understand its quite confusing, let me try one more time - point you're missing is when users action result into two potential events (clubbed together into single event referred as multi event record) - you can use data prep whether such event to be stored as product view event or page view event by keeping relevant attributes that you care about. Pasting sample payload of multievent record.
{
"ecid": "12345",
"_id": "123344567",
"eventType": "Multievent Record",
"timestamp": "2023-10-05T14:30:00Z",
"Page view": {
"page_title": "Product Listing Page",
"device_type": "desktop",
"browser": "Chrome",
"os": "Windows 10"
},
"product view":{
"event_timestamp": "2023-10-05T14:31:00Z",
"product_id": "prod_67890",
"product_name": "Wireless Bluetooth Headphones",
"product_category": "Electronics/Audio",
"product_price": 99.99,
"currency": "USD",
"device_type": "desktop",
"browser": "Chrome",
"os": "Windows 10"
}
}