await appboxo.track({
action: 'transaction',
payload: {
shipping: 0,
tax: 0.57,
discount: 2.25,
currency_code: 'USD',
customer: { // optional
first_name: 'John',
last_name: 'Doe',
email: 'jdoe@domain.com',
ip_address: '234.192.4.75'
},
items: [
{
name: 'Product name',
description: 'Product description',
price: 8.80,
amount: 1,
total: 8.80
}
]
}
})