These events are available for use with Segment and Google Tag Manager. Integration instructions below are specific to Segment.

Identify Users

Trigger Segment [identify](<https://segment.com/docs/connections/spec/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
});

Identify User

Trails

Naming Convention

Events

Trigger Segment [track](<https://segment.com/docs/connections/spec/track/>) API

Example

analytics.track("User Registered", {
  category: "Sign Up"
  email: "[email protected]",

});