This endpoint tracks an event for a specific user. If the user profile doesn’t exist Vero will create it.
event_name, the same properties and that are tracked against the same user id within a three minute window. This is designed to solve issues related to Javascript event handling and retries. You can force Vero to ignore deduplication and track every event by including a property within data with a unique timestamp. This will ensure the event is not seen by the Vero system as a duplicate due to the unique data.A valid JSON hash containing the keys id and email used to identify the user for which the event is being tracked. Both email and id must be less than 255 characters and email must be a valid email address.
The name of the event tracked. Must be less than 255 characters. Capitalized and lowercase letters and spaces and underscores will be treated the same by Vero's API. For example, Purchased Item, purchased item, and purchased_item will all be matched as one event in Vero's backend.
"Viewed product"
A valid JSON hash containing key value pairs that represent the custom user properties you want to track with the event. All keys are freeform and can be defined by you.
{
"product_name": "Red T-shirt",
"product_url": "http://www.yourdomain.com/products/red-t-shirt"
}A valid JSON hash containing key/value pairs that represent the reserved, Vero-specific created_at and source properties. Refer to the note on "deduplication" above.