Tag Build is an innovative tool designed specifically for digital marketers and SEO professionals. It streamlines the process of generating JSON files for Google Tag Manager (GTM), following GA4's recommended event structure to ensure optimal tracking implementation.
While Google Tag Manager offers basic functionality for implementing GA4 events, the rapidly evolving nature of business and marketing requirements often necessitates frequent updates and validation. Tag Build addresses these challenges by providing a more efficient and maintainable solution.
Explore the seamless integration between GA4 recommended events and Tag Build's structured format:
{
"comments": "----- usual event data -----",
"event": "begin_checkout",
"ecommerce": {
"value": "$value",
"currency": "$currency",
"items": [
{
"item_id": "$item_id",
"item_name": "$item_name",
"item_brand": "$item_brand",
"item_category": "$item_category",
"item_category2": "$item_category2",
"item_category3": "$item_category3",
"item_category4": "$item_category4",
"item_category5": "$item_category5",
"discount": "$discount",
"price": "$value",
"quantity": "$quantity",
"coupon": "$coupon",
"index": "$index",
"item_variant": "$item_variant"
}
]
}
}[
{
"comments": "----- Tag Build format -----",
"event": "another_event"
},
{
"comments": "----- usual event data -----",
"event": "begin_checkout",
"ecommerce": {
"value": "$value",
"currency": "$currency",
"items": [
{
"item_id": "$item_id",
"item_name": "$item_name",
"item_brand": "$item_brand",
"item_category": "$item_category",
"item_category2": "$item_category2",
"item_category3": "$item_category3",
"item_category4": "$item_category4",
"item_category5": "$item_category5",
"discount": "$discount",
"price": "$value",
"quantity": "$quantity",
"coupon": "$coupon",
"index": "$index",
"item_variant": "$item_variant"
}
]
}
}
]