Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Anchor
ecomcheckout
ecomcheckout
Checkout Options

  • step
    • the step number

      Info

      // Step 1 - going to the cart

                  // Step 2 - attempting to checkout but need to log in

                  // Step 3 - going to the delivery options

                  // Step 4 - going to the payment options

                  // Step 5 - going to submit the order

  • products
    • the products in the cart

 

checkout steps

Code Block
languagejs
{
	"event": "checkout",
	"event_type": "checkout",
	"ecommerce": {
		"checkout": {
			"actionField": {
				"step": 1
			},
			"products": [
			{
				"name": "Product Description",
				"id": "ProductCode",
				"category": "/first level/second level/third level",
				"brand": "brand name",
				"price": "99.99"
			}
			]
		}
	}
}

...