// Transaction
window.tracker('addTrans',
'1234', // order ID - string
'Acme Clothing', // affiliation or store name - string
11.99, // total - num
1.29, // tax - num
5, // shipping - num
'San Jose', // city - string
'California', // state or province - string
'USA', // country - string
'USD' // currency - string
);
// Transaction Items (items in checkout cart)
// It is assumed that the "items" variable represents
// an array of products that comprises the entire
// checkout
for(let i = 0; i < items.length; ++i) {
window.tracker('addItem',
'1234', // order ID - string
'DD44', // SKU/code - string
'T-Shirt', // product name - string
'Green Medium', // category or variation - string
11.99, // unit price - num
1, // quantity - num
'USD' // currency - string
);
}
window.tracker('trackTrans')