Use setTargetting. You will need to open the "Resources" tab on the DFP toolbar to create utm code keys ( link to key values )
<script>
function getParameterByName(name, url) {
if (!url) url = window.location.href;
name = name.replace(/[\[\]]/g, "\\$&");
var regex = new RegExp("[?&]" + name + "(=([^&#]*)|&|#|$)"),
results = regex.exec(url);
if (!results) return null;
if (!results[2]) return '';
return decodeURIComponent(results[2].replace(/\+/g, " "));
}
googletag.cmd.push(function () {
googletag.pubads().setTargeting('utm_source', getParameterByName('utm_source'));
});
</script>
source
share