Tracking user signups for your B2B SaaS product allows you to measure the effectiveness of your marketing efforts and identify potential areas for improvement in order to increase user acquisition and overall growth.
javascript
Copy
const waitlyst = new Waitlyst("PUBLISHABLE_KEY");
/* Track signup clicked event with properties */
waitlyst.track('signup', {
userId: '123'
customerType: 'business',
plan: 'pro',
price: 2000,
});