In order to send us conversion events, you need to use our Javascript tag.
If you are an e-commerce website and you wish to send an order event, use the following script on the order confirmation page. In case you want to send a general conversion such as a form or an action completed, use the second script on whichever trigger/event you'd like.
Send orders:
<script>
document.getElementById("vidjet").onload = function() {
Vidjet && Vidjet.send('order', {
orderId: '', // The id for this order. This value will be unique.
totalATI: 0, // Order total amount tax included
totalET: 0, // Order total amount tax excluded
currency: '' // The currency of the order. Ex: 'EUR', 'USD'
});
}
</script>
Send Conversion:
<script>
document.getElementById("vidjet").onload = function() {
Vidjet && Vidjet.send('conversion', {
name: '', //Name of the conversion
});
}
</script>