Product View Tracking
Product View Tracking
Use the productview tracking type when a product is the main focus of the page, such as a product detail page (PDP).
This tracking type allows you to associate a single product interaction with a productview state.
Tracking Commands
productproductviewsubmit
Example
_jts.push({
  track: "product",
  type: "productview",
  id: "12345567",
  name: "Product Name"
});
_jts.push({
  track: "productview"
});
_jts.push({
  track: "submit"
});Properties for productview
productviewThere are no additional properties for the productview command. The relevant product metadata is tracked via the product object.
Ensure the type: "productview" is correctly assigned to the product object so it links to the productview state.
For more about using this in combination with other product types, refer to the E-Commerce Tracking.
Last updated
Was this helpful?