Display Event¶
The placement.display.event
object specifies a type of ad tracking event and
which methods of tracking are available for it. This object may appear as an array
for a given placement indicating various types of available tracking events.
Value |
Type |
Description |
---|---|---|
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 |
array of integers |
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:
|
ext |
object |
Event Extension Object¶
Value |
Type |
Description |
---|---|---|
clktrkrq |
integer |
Indicated that a click tracker is required. |
Event JSON example¶
{
"event":[
{
"type":1,
"method":[
2
]
},
{
"type":2,
"method":[
3,
4
]
}
]
}