[Adobe Launch] Purchase Event via dataLayer
I need to pass the purchase details of a transaction in order to capture revenue/product level information.
If my digitalData / dataLayer contains these two bits of info, what should my rule be in Adobe Launch in order to pass this info to Adobe Analytics?
Thanks
--
digitalData.transaction.total =
{ purchaseID: "ABCAS",
basePrice: 100.00,
currency: "AED",
taxRate: 0.05,
priceWithTax: 105,
transactionTotal: 105 };
digitalData.transaction.item = {
basePrice: 100.00,
currency: "AED",
taxRate: 0.05,
priceWithTax: 105,
transactionTotal: 105,
category=smartphones,
product=Samsung smartphone,
quantity=1
};