We offer three distinct methods for delivering the Brand Metrics survey to users.
Many publishers display surveys within standard ad inventory.
The response rate is generally close to the sites CTR, or 0.1-0.2%
he following example uses Google Ad Manager (GAM), but the approach can be adapted for other ad servers such as Xandr or Adheese. Adjust the configuration to match your setup, for instance, if you don’t run 300×250 units on desktop or want additional formats.
1. Create a GAM Key-Value Pair
2. Set Up a Survey Line Item
This line item will cover all measurements. Configure it as follows:
3. Survey Creative Setup
Include the following code in the creative:
<!-- Track survey completion as a line item click -->
<script>
window.top._brandmetrics = window.top._brandmetrics || [];
window.top._brandmetrics.push({ cmd: "_addeventlistener", val: {
event: "surveyanswered",
handler: function(ev){
var pixel = "%%CLICK_URL_UNESC%%";
var img = document.createElement("img");
img.setAttribute("src", pixel);
document.body.appendChild(img);
}
} });
</script>
<!-- Script to select, render survey, and handle responses -->
<script async src="<https://cdn.brandmetrics.com/surveyinad.js>"></script>
Note: Using this creative, each time a survey is answered, the survey line item will register a click.