Hey,
I’m using segment’s Amplitude Action destination.
I have an ‘Order Completed’ event that contains a lot of properties, among them ‘products’ an array of objects with the price, id, … of the products purchased.
Looking in amplitude a ‘Product Purchased’ event is created for each item in ‘products’ with the product’s properties. But i’m loosing all the properties of the ‘Order Completed’ event, what is the best way to pass those properties to the ‘Product Purchased’ event ?
Example :
Order Completed :
store: Paris,
Products: :
{id: 1, price:2, quantity: 1}
]
It creates the following event automatically :
Product Purchased:
id: 1,
price: 2,
quantity: 1
But it’s missing the store property
Thanks,
Matthias