Tracking the number of teams created on your B2B saas product allows you to measure the adoption and usage of your product within organizations, as well as identify trends in team creation and potential areas for product growth.
javascript
Copy
const waitlyst = new Waitlyst("PUBLISHABLE_KEY");
/* Track event */
waitlyst.track('team created');
/* Track event with properties */
waitlyst.track('Team created', {
name: 'Pied Piper',
slug: 'pied-piper',
size: 100,
onboarding: 'analytics'
});