TagCheck

Tag Build について

Tag Build は、デジタルマーケターとSEO専門家のために特別に設計された革新的なツールです。Google Tag Manager (GTM) 用のJSONファイルを生成するプロセスを効率化し、GA4が推奨するイベント構造に従って最適なトラッキング実装を実現します。

Google Tag Managerは、GA4イベントを実装するための基本的な機能を提供していますが、ビジネスやマーケティング要件の急速な進化により、頻繁な更新と検証が必要となることがあります。Tag Buildは、より効率的で保守可能なソリューションを提供することで、これらの課題に対応します。

なぜ Tag Build なのか?

Google Cloud Platform (GCP) サーバーを使用する従来の実装方法では、Google SheetsとGTMを効果的に同期することができます。しかし、多くのマーケティング代理店はGCPリソースへのアクセス権を持っていないため、より利用しやすいソリューションが必要とされています。Tag Buildは、複雑なインフラを必要としないスタンドアロンツールを提供することで、このギャップを埋めています。

対象者は?

Tag Buildは、ワークフローを効率化し、データ分析とビジネスインテリジェンスにより注力したいマーケティング専門家に最適です。効率性を維持しながらトラッキング実装を最適化したいチームにとって、特に価値のあるツールです。
図1 — Tag Buildワークフロー

仕組み

GA4 推奨イベントと Tag Build の構造化フォーマット間のシームレスな統合をご覧ください:

GA4 イベント
{
  "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"
      }
    ]
  }
}
Tag Build 形式
[
  {
    "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"
        }
      ]
    }
  }
]