Skip to content

Instantly share code, notes, and snippets.

@framingeinstein
Last active February 3, 2017 20:31
Show Gist options
  • Save framingeinstein/01618bf9d2488dc10829c4e3db849314 to your computer and use it in GitHub Desktop.
Save framingeinstein/01618bf9d2488dc10829c4e3db849314 to your computer and use it in GitHub Desktop.
Ecommerce Examples
//Visiting Cart page while adding product to empty cart
[
{
"pageName":"Store:checkout:shopping_cart",
"siteProperty":"AICPASTORE",
"siteSection":"Shopping Cart Page",
"siteSubSection":"TBD"
},
{
"event":"addToCart",
"ecommerce":{
"currencyCode":"USD",
"add":{
"products":[
{
"name":"PC-012625",
"id":"AAGINV16P",
"price":"$99.00",
"brand":"PLACE THE PRODUCT BRAND",
"category":"Publications",
"quantity":"1"
}
]
}
}
},
{
"event":"checkout",
"ecommerce":{
"checkout":{
"actionField":{
"step":"1",
"action":"Shopping Cart"
},
"products":[
{
"name":"PC-012625",
"id":"AAGINV16P",
"price":"$99.00",
"brand":"PLACE THE PRODUCT BRAND",
"category":"Publications",
"quantity":"1"
}
]
}
}
}
]
//Visiting Cart page while adding product to existing cart
[
{
"pageName":"Store:checkout:shopping_cart",
"siteProperty":"AICPASTORE",
"siteSection":"Shopping Cart Page",
"siteSubSection":"TBD"
},
{
"event":"addToCart",
"ecommerce":{
"currencyCode":"USD",
"add":{
"products":[
{
"name":"PC-012625-2",
"id":"AAGINV16P",
"price":"$99.00",
"brand":"PLACE THE PRODUCT BRAND",
"category":"Publications",
"quantity":"1"
}
]
}
}
},
{
"event":"checkout",
"ecommerce":{
"checkout":{
"actionField":{
"step":"1",
"action":"Shopping Cart"
},
"products":[
{
"name":"PC-012625",
"id":"AAGINV16P",
"price":"$99.00",
"brand":"PLACE THE PRODUCT BRAND",
"category":"Publications",
"quantity":"1"
},
{
"name":"PC-012625-2",
"id":"AAGINV16P",
"price":"$99.00",
"brand":"PLACE THE PRODUCT BRAND",
"category":"Publications",
"quantity":"1"
}
]
}
}
}
]
//Visiting Cart page while removing product from existing cart
[
{
"pageName":"Store:checkout:shopping_cart",
"siteProperty":"AICPASTORE",
"siteSection":"Shopping Cart Page",
"siteSubSection":"TBD"
},
{
"event":"removeFromCart",
"ecommerce":{
"currencyCode":"USD",
"remove":{
"products":[
{
"name":"PC-012625-2",
"id":"AAGINV16P",
"price":"$99.00",
"brand":"PLACE THE PRODUCT BRAND",
"category":"Publications",
"quantity":"1"
}
]
}
}
},
{
"event":"checkout",
"ecommerce":{
"checkout":{
"actionField":{
"step":"1",
"action":"Shopping Cart"
},
"products":[
{
"name":"PC-012625",
"id":"AAGINV16P",
"price":"$99.00",
"brand":"PLACE THE PRODUCT BRAND",
"category":"Publications",
"quantity":"1"
}
]
}
}
}
]
//Visiting Cart page with existing cart and no products added or removed
[
{
"pageName":"Store:checkout:shopping_cart",
"siteProperty":"AICPASTORE",
"siteSection":"Shopping Cart Page",
"siteSubSection":"TBD"
},
{
"event":"checkout",
"ecommerce":{
"checkout":{
"actionField":{
"step":"1",
"action":"Shopping Cart"
},
"products":[
{
"name":"PC-012625",
"id":"AAGINV16P",
"price":"$99.00",
"brand":"PLACE THE PRODUCT BRAND",
"category":"Publications",
"quantity":"1"
},
{
"name":"PC-012625-2",
"id":"AAGINV16P",
"price":"$99.00",
"brand":"PLACE THE PRODUCT BRAND",
"category":"Publications",
"quantity":"1"
}
]
}
}
}
]
// example product view
dataLayer.push({
'ecommerce': {
'detail': {
'actionField': {'list': 'Apparel Gallery'}, // 'detail' actions have an optional list property.
'products': [{
'name': 'Triblend Android T-Shirt', // Name or ID is required.
'id': '12345',
'price': '15.25',
'brand': 'Google',
'category': 'Apparel',
'variant': 'Gray'
}]
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment