Name | Modifiers & Defaults | Type | Description |
---|---|---|---|
url | Required | String A valid URL. | The URL of the pixel. (A valid URL that points to an HTTP resource. Supported resources are image or text - not JS.) |
verification_pixel_type | Required | String Possible values: CLICK VIEWABLE_IMPRESSION IMPRESSION | The event type that will trigger the pixel. |
The following example illustrates the object schema:
{
"id": "101",
"campaign_id": "1234",
//...
"verification_pixel": {
"verification_pixel_items": [
{
// Pixel Item 1
},
{
// Pixel Item 2
},
{
// Pixel Item 3
}
]
},
//...
}
{
"id": "101",
"campaign_id": "1234",
//...
"verification_pixel": {
"verification_pixel_items": [
{
"url": "https://www.example.com/",
"verification_pixel_type": "CLICK"
},
{
"url": "https://www.example.com/",
"verification_pixel_type": "VIEWABLE_IMPRESSION"
},
{
"url": "https://www.example.com/",
"verification_pixel_type": "IMPRESSION"
}
]
},
//...
}