Google Analytics(アナリティクス) GA4での購入完了ページのタグは?

下記のタグを参考にしてください。

<script>
window.dataLayer = window.dataLayer || [];
dataLayer.push({ ecommerce: null });
dataLayer.push({
  event: "purchase",
  ecommerce: {
      transaction_id: "<!--{orderId}-->",
      affiliation: "ショップ名を入れてください",
      value: "<!--{productTotalFix}-->",
      tax: "<!--{productTotalTax}-->",
      shipping: "<!--{deliveryFee}-->",
      currency: "JPY",
      items: [<!--{sectionProducts}-->{
        item_name: "<!--{productName}-->",
        item_id: "<!--{productCode}-->",
        price: "<!--{productPrice}-->",
        item_brand: "",
        item_category: "",
        quantity: <!--{productQuantity}-->
      }, <!--{/sectionProducts}-->]
  }
});
</script>

※上記のタグは「購入完了ページ」のみ有効です。
※購入完了ページ以外のデータレイヤーにつきましては、各テンプレート編集画面の「利用可能タグ」ボタン(各テンプレート毎に利用可能なタグが違います)から利用できるタグを組み合わせて設定してください。