Skip to content

Files

Latest commit

511de90 · Apr 3, 2024

History

History
27 lines (20 loc) · 400 Bytes

mixpanel.md

File metadata and controls

27 lines (20 loc) · 400 Bytes
title category
Mixpanel
Analytics

Identify

mixpanel.identify('284')
mixpanel.people.set({ $email: '[email protected]' })
// Set common properties
mixpanel.register({ age: 28, gender: 'male' })

Track events

mixpanel.track('Login success')
mixpanel.track('Search', { query: 'cheese' })

References