These events are available for use with Segment, RudderStack and Google Tag Manager. Integration instructions below are specific to Segment.
Trigger Segment identify  API
Anonymous Login
analytics.identify( {
  email: "[email protected]",
});
With User ID
analytics.identify("97980cfea0067", {
  name: "Peter Gibbons",
  email: "[email protected]",
  plan: "premium",
  logins: 5
});
Trigger Segment track API
Example
analytics.track("User Registered", {
  category: "Sign Up"
  email: "[email protected]",
});