# 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

* `product`
* `productview`
* `submit`

### Example

```javascript
_jts.push({
  track: "product",
  type: "productview",
  id: "12345567",
  name: "Product Name"
});

_jts.push({
  track: "productview"
});

_jts.push({
  track: "submit"
});
```

### Properties for `productview`

There 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 [](https://docs.jentis.com/data-capture/web-tracking-setup/set-up-jentis-data-layer/e-commerce-tracking "mention").
