Skip to main content
The product_view tracking event tells PureClarity that the user has viewed a product with the given id. Optionally it can also include product information.

Properties

id
string
required
Specifies the product that has been viewedExample: P41923
product
object
Optional product information. See the product feed for details of the properties to send

Example

{
  "id": "P41923"
}

With Optional Product Information

{
  "id": "P41923",
  "product": {
    "title": "Example Product",
    "price": 29.99,
    "image": "https://example.com/images/product.jpg"
  }
}