Table of Contents



Overview

You may wish to use Events to track conversions, installs, or other key activities. These will be counted as "Conversions" in our Query Tool reporting. More information on Attribution as a concept can be found here.

Creation Steps

1) Click “+New” button > Events

2) Complete the Event form:


You can find more information on Attribution Types in Conversion and Attribution Setup (Non-Postback)). 

3) Under the “Tag Type” section on the right side, select the tag type you want to generate: 

4) Click “Save & Generate Tag”

5) Copy and paste the generated tag

6) Follow the implementation steps below for the javascript tag. For postbacks, implementation info can be found here:  Postback Handling for Conversions

You can read more about conversion events in general here:  http://docs.beeswax.com/docs/conversion-events

Implementation of Javascript tag for placing in a web environment

To implement a generic JavaScript tag, you’ll want to consider the following parameters and possible edits:

var cachebuster = Math.floor(Math.random() * 10000000000),

img = new Image(); 
img.width = 0;
img.height = 0;

//replace this with the event conversion tag you generated

img.src = 'https://cnv.event.prod.bidr.io./log/cnv?tag_id=12345&buzz_key=stinger&value=[VALUE]&segment_key=12345&order=[ORDER]&ord=' + cachebuster;

document.body.appendChild(img); // or wherever the image should be placed

You can find more information about these parameters here:  http://docs.beeswax.com/v0.5/docs/conversion-tags-1