Track events

After identifying users, you can now capture their actions like "Product Clicked" or "Product Viewed" with other custom properties.

Track an event

POST https://api-lumen-app.herokuapp.com/v1/track

Track an event

Headers

Request Body

{
    uuid: "event uuid",
    identifier: "your-identifier",
    event_name: "event-name"
    properties: "properties",
    created_at: "time created",
    device_id: "device id"
}

You can check out our event naming guide for details on how to standadize your events.

Last updated