Trigger Postbacks Programmatically
How to trigger postback url from your site using the AnyTrack TAG.
<script>
AnyTrack('postback', 'https://hook.integromat.com/gnc44c?clickId={click_id}');
</script><script>
AnyTrack('postback', 'https://hook.integromat.com/gnc44c?clickId={click_id}', {
brand_name: 'bar',
value: 59.99,
// ...
});
</script>Extracting AnyTrack `atclid`
<script>
AnyTrack(function() {
// extract atclid once AnyTrack script is loaded
var atclid = AnyTrack('atclid');
// do something with the click id later on...
console.log('AnyTrack client:', atclid);
});
</script>Last updated