Tag Build

了解 Tag Build

Tag Build 將 GA4 事件需求轉換為可直接交給 Google Tag Manager 的 JSON——不需要試算表、伺服器設定或 GTM 內部知識。團隊可以交付結構化、可審查的 payload,而不是臨時拼湊的設定。

追蹤需求頻繁變動。沒有結構化的建置流程,每次 GTM 更新都可能導致 payload 不一致,讓分析報告難以除錯。Tag Build 將每個事件規格保存為可審查的產出物,確保變更有跡可循。

為什麼選擇 Tag Build?

基於 GCP 的工作流程可以將 Google Sheets 與 GTM 同步,但大多數代理商和內部團隊沒有 GCP 存取權限,也沒有維運它們的工程資源。Tag Build 以靜態用戶端工具的形式,為這些團隊提供同等的結構化建置流程——不需要雲端帳號。

誰會受益?

Tag Build 專為沒有專職工程支援、卻要管理 GTM 實施的 SEO 專家、數位分析團隊和行銷代理商而設計。如果你的團隊目前用試算表管理追蹤計畫,Tag Build 能幫你更快、更結構化地產出可交付給 GTM 的輸出。
圖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"
        }
      ]
    }
  }
]