PushdyIns.track(
'Purchase', {
value: 500000, currency: 'VND'
});
PushdyIns.track(
'Lead', {
source: 'button_call'
});
PushdyIns.track(
'CompleteRegistration', {
user_id: 'abc',
email: '[email protected]',
phone: '0123456789'
});
PushdyIns.track(
'AddPaymentInfo', {
type: 'paypal' });
PushdyIns.track(
'AddToCart', {
product_id: '10',
category: 'Laptop',
name: 'Dell 1530',
brand: 'Dell',
price: 12000000,
quantity: 1
});
PushdyIns.track(
'AddToWishlist', {
product_id: '10',
category: 'Laptop',
name: 'Dell 1530',
brand: 'Dell'
});
PushdyIns.track(
'InitiateCheckout', {
products: [{
product_id: '10',
name: 'Dell 1530',
price: 12000000,
category: 'Laptop',
quantity: 1
}]
});
PushdyIns.track(
'Search', {
term: 'iphone' });
PushdyIns.track(
'ViewContent', {
type: 'product',
content_id: '20'
});