Skip to main content

Standard events

Page display

Event name

page.display

Standard properties

PropertyType
pagestring
page_chapter1string
page_chapter2string
page_chapter3string
pa.sendEvent('page.display', {
'page' : 'page name',
'page_chapter1' : 'level 1',
'page_chapter2' : 'level 2',
'page_chapter3' : 'level 3',
});

Clicks

Event name

click.action / click.navigation / click.download / click.exit

Standard properties

PropertyType
clickstring
click_chapter1string
click_chapter2string
click_chapter3string
pa.sendEvent('click.action', {
'click' : 'click name',
'click_chapter1' : 'level 1',
'click_chapter2' : 'level 2',
'click_chapter3' : 'level 3',
});

Onsite Ads

Event name

publisher.impression / publisher.click / self_promotion.impression / self_promotion.click

Standard properties

PropertyTypePossible value
onsitead_type (mandatory)stringPublisher / Self promotion
onsitead_advertiserstring
onsitead_campaignstring
onsitead_categorystring
onsitead_creationstring
onsitead_detailed_placementstring
onsitead_formatstring
onsitead_general_placementstring
onsitead_urlstring
onsitead_variantstring
pa.sendEvent('publisher.impression', {
'onsitead_type' : 'Publisher',
'onsitead_advertiser' : 'Pitchfork',
'onsitead_campaign' : '2',
'onsitead_category' : 'HotDeals',
'onsitead_creation' : 'brand',
'onsitead_detailed_placement' : 'right',
'onsitead_format' : '336x280',
'onsitead_general_placement' : 'side',
'onsitead_url' : 'https://www.atinternet.com',
'onsitead_variant' : 'newbies',
});

Internal search engine

Result display

Event name

internal_search_result.display

Standard properties

PropertyType
ise_keywordstring
ise_pageint
pa.sendEvent('internal_search_result.display', {
'ise_keyword' : 'daft',
'ise_page' : 2,
});

Result click

Event name

internal_search_result.click

Standard properties

PropertyType
ise_keywordstring
ise_click_rankint
ise_pageint
pa.sendEvent('internal_search_result.click', {
'ise_keyword' : 'daft',
'ise_click_rank' : 2,
'ise_page' : 1,
});

MV Testing

Event name

mv_test.display

Standard properties

PropertyType
mv_creationstring
mv_teststring
mv_waveint
pa.sendEvent('mv_test.display', {
'mv_creation' : 'BlueTheme',
'mv_test' : 'NewUX',
'mv_wave' : 2,
});

Batching similar events

You can batch multiple similar events into a single event: they will be split by our processing. To do this, push each event as an object into the array property named items_list. Properties at the root of the data object will be pushed to each event properties.

{
"name": "product.display",
"data": {
"product_category1": "Hardware",
"product_category2": "Computer",
"product_category3": "Gaming",
"product_category4": "Laptop",
"items_list": [
{
"product_id":"LPTAX174",
"product": "Laptop AX174",
"product_variant": "8Go RAM",
"product_brand": "Laptop",
"product_discount": false,
"product_placement": "banner",
"product_pricetaxincluded": 1399.9,
"product_pricetaxfree": 1120.9,
"product_stock": true
},
{
"product_id":"LPTAX174",
"product": "Laptop AX174",
"product_variant": "16Go RAM",
"product_brand": "Laptop",
"product_discount": false,
"product_placement": "banner",
"product_pricetaxincluded": 1499.9,
"product_pricetaxfree": 1200.9,
"product_stock": true
}
]
}
}

// equals to

[{
"name": "product.display",
"data": {
"product_category1": "Hardware",
"product_category2": "Computer",
"product_category3": "Gaming",
"product_category4": "Laptop",
"product_id":"LPTAX174",
"product": "Laptop AX174",
"product_variant": "8Go RAM",
"product_brand": "Laptop",
"product_discount": false,
"product_placement": "banner",
"product_pricetaxincluded": 1399.9,
"product_pricetaxfree": 1120.9,
"product_stock": true
}
},
{
"name": "product.display",
"data": {
"product_category1": "Hardware",
"product_category2": "Computer",
"product_category3": "Gaming",
"product_category4": "Laptop",
"product_id":"LPTAX174",
"product": "Laptop AX174",
"product_variant": "16Go RAM",
"product_brand": "Laptop",
"product_discount": false,
"product_placement": "banner",
"product_pricetaxincluded": 1499.9,
"product_pricetaxfree": 1200.9,
"product_stock": true
}
}]
note

You can send up to 100 items in the array. Please note that our Collection API has a payload size limit that may be reached before the 100 item limit. Please see the dedicated page.