TABLE OF CONTENTS
Description
This server-side event fires when Yotpo receives a product review. This event fires in response to a customer leaving a review directly on a merchant’s storefront, or when submitting a review through an email-based review request.
Instrumentation
This event is part of Fueled.io’s advanced Yotpo Source Connector.
Property | Type | Description |
---|---|---|
product_id | String | Product’s ID |
name | String | Product Name |
url | String | Product Url |
image_url | String | Product Image Url |
review_id | String | Review ID |
review_body | String | Review body |
rating | String | Review rating |
Example
analytics.track('Product Reviewed', {
product_id: '507fasfgr5563377bcf86dv769429912',
name: 'Monopoly: 3rd Edition',
url: 'https://www.example.com/product/path',
image_url: 'https://www.example.com/product/path.jpg'
review_id: 'gafers29fj456233jl2',
review_body: 'I love this product',
rating: '5'
});
ON THIS PAGE