You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Identify your users in UserLeap using Segment's Identify method. Segment `traits` map to UserLeap `attributes`.
32
32
33
-
**Important:**You can only create new users with Identify calls.
33
+
**Important:**Only Identify calls can create new users.
34
34
35
35
## Track
36
36
If you aren't familiar with the Segment Spec, take a look at the [Track method documentation](https://segment.com/docs/connections/spec/track/) to learn about what it does. An example call would look like:
37
37
```js
38
-
analytics.track('Clicked Button');
38
+
analytics.track('Button Clicked');
39
39
```
40
40
Use Track calls to track events and use them as filtering criteria for your Surveys.
41
41
42
-
**Important:**Add Triggered Events mapped to your Segment Track event names in your UserLeap [Events dashboard](https://app.userleap.com/events) before sending them through Segment.
42
+
Add Triggered Events mapped to your Segment Track event names in your UserLeap [Events dashboard](https://app.userleap.com/events) before sending them through Segment.
43
43
44
44
## Page
45
45
If you aren't familiar with the Segment Spec, take a look at the [Page method documentation](https://segment.com/docs/connections/spec/page/) to learn about what it does. An example call would look like:
@@ -48,7 +48,7 @@ analytics.page()
48
48
```
49
49
Segment sends Page calls to UserLeap as a `pageview` which you can use as filtering criteria for your surveys.
50
50
51
-
**Important:**Add Page URLs mapped to your Segment Page call's `properties.url` field in your UserLeap [Events dashboard](https://app.userleap.com/events) before sending them through Segment.
51
+
Add Page URLs mapped to your Segment Page call's `properties.url` field in your UserLeap [Events dashboard](https://app.userleap.com/events) before sending them through Segment.
0 commit comments