Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Most clients of Ingenious do not need a HTLP (The provision of a so-called High Traffic Landing Page (HTLP) , since the Ingenious System allows Post View attribution as a standard.

Cases where a HTLP is needed

A HTLP is needed, if you work with a tool for deduplication (“tracking switch”) that in the case of Post View or Performance Display (Advertising) is only necessary if you use a third-party provider for real-time deduplication of your online marketing activities or a self-developed multi-channel tracking solution. The tracking solution needs to register an ad impression touchpoint and store information (cookie, iclid) to enable attribution and conversion tracking.

...

Drawio
zoom1
simple0
inComment0
pageId3212673025
custContentId3213852700
lbox1
diagramDisplayNameUnbenanntes Diagramm.drawio
contentVer5
revision5
baseUrlhttps://ingenioustechnologies.atlassian.net/wiki
diagramNameUnbenanntes Diagramm.drawio
pCenter0
width819.5
links
tbstyle
height451

Before you start

You need an HTML file that is accessible on the shop domain (in our example https://yourshop.com). It should not have content targeted to the user like images, text etc. (no user will see it). However, it must be able to execute all actions needed for tracking (e.g. writing a cookie etc). The exact details depend on the tracking switch/ tracking technology in use.

When the HTLP is called, Ingenious will transmit the iclid (Ingenious Click Id) as a GET-parameter. The HTLP must be able to read the value of the iclid and save it in a cookie on the shop domain, so its value can be passed on with the conversion tag later. Read this article for a PHP-code example how to store the Click-Id.

Example

https://yourshop.com/htlp.html?iclid=#{ICLID}

HTLP creative

In order to give publishers access to the HTLP and a click tag / creative code that contains partner specific tracking information, you need to create a HTLP creative.

...

Code Block
<iframe 
  src="https://(TRACKING_DOMAIN)/ts/(EXT_AVERTISER_ID)/tsv?amc=#{ADMEDIA_CODE}&rmd=3&trg=(URL_OF_HTLP_ENCODED)+%26iclid%3D%23%7BICLID%7D" 
  style="position:absolute;width:0;height:0;border:0;"
><iframe>></iframe>

Please Replace:

  • (TRACKING DOMAIN) with the tracking domain of your advertiser.

  • (EXT_AVERTISER_ID) with the external Advertiser Id (the Id with the format ixxxxxx)

  • (URL_OF_HTLP_ENCODED): The URL of the HTLP, it needs to be URL encoded. So https://yourshop.com/htlp.html becomes https%3A%2F%2Fyourshop.com%2Fhtlp.html

...

Code Block
<iframe 
  src="https://marketing.net.ingenioustechnologies.com/ts/i5615284/tsv?amc=#{ADMEDIA_CODE}&rmd=3&trg=https%3A%2F%2Fyourshop.com%2Fhtlp.html%3Ficlid%3D%23%7BICLID%7D">
  style="position:absolute;width:0;height:0;border:0;"
<iframe></iframe>