Events

Events

Events are the core of funnnel.

Events are composed by: - name - properties - channels Events can be grouped in more than one channel and have infinite properties.

Example, a purchase event for a subscription plan:

track({
    name: "purchase",
    properties: {
        "item": "Subscription to premium plan",
        "plan": "premium",
        "price": "1900"
    },
    channels: ["purchases"]
})

Or a review:

track({
    name: "review",
    properties: {
        "text": "Good job guys!",
        "rating": "5"
    },
    channels: ["reviews"]
})

Last updated