Display Event Trackers¶
The seated.bid.media.ad.display.event
object specifies a type of event that the
advertiser or buying platform wants to track along with the information required to
do so.
Value |
Type |
Description |
---|---|---|
url |
str |
(Required) The URL of the tracking pixel or JavaScript tag, respectively. Required for Image-Pixel or JavaScript methods. |
type |
integer |
(Required) Type of supported ad tracking event. The following types refer to the actual event, timing, etc.; not the method of firing. Scripts that are performing measurement should be deployed at the “loaded” event.
|
method |
integer |
(Required) Array of supported event tracking methods for this event type:
|
api |
array of integers |
Event tracking APIs available for use, only relevant for JavaScript method trackers:
|
cdata* |
object |
Containing |
ext* |
object |
This object is a placeholder that may contain custom JSON agreed to by the parties to support flexibility beyond the standard defined in this specification |
Event Tracker Example¶
{
"event":[
{
"type":1,
"method":2,
"url":"http://www.mytracker.com/tracker.js"
},
{
"type":2,
"method":1,
"url":"http://www.example.com/tracker.php"
}
]
}