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
Copy file name to clipboardExpand all lines: src/connections/destinations/catalog/userleap/index.md
+7-2Lines changed: 7 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -17,7 +17,7 @@ This destination is maintained by UserLeap. For any issues with the destination,
17
17
4. Go to the [UserLeap dashboard](https://app.userleap.com/settings/installation), find and copy the **API key**.
18
18
5. Enter the UserLeap API Key that you copied in the UserLeap destination settings in Segment.
19
19
20
-
**Note**: Only Email Surveys and Link Surveys are supported through Segment's Userleap integration. To utilize In-Product Surveys, you must install UserLeap's SDK.
20
+
**Note**: UserLeap's Segment integration does not support In-Product Surveys
21
21
22
22
## Identify
23
23
If you aren't familiar with the Segment Spec, take a look at the [Identify method documentation](https://segment.com/docs/connections/spec/identify/) to learn about what it does. An example call would look like:
Use Segment's Identify method to identify your users in UserLeap. Segment `traits` map to UserLeap `attributes`.
32
33
33
34
**Important:** Only Identify calls can create new users in UserLeap.
34
35
35
36
## Track
36
37
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:
38
+
37
39
```js
38
40
analytics.track('Button Clicked');
39
41
```
42
+
40
43
Use Track calls to track events and use them as filtering criteria for your Surveys.
41
44
42
45
Create Triggered Events in your UserLeap [Events dashboard](https://app.userleap.com/events) and map them to your Segment Track event names before you start sending Segment data to UserLeap.
43
46
44
47
## Page
45
48
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:
49
+
46
50
```js
47
51
analytics.page()
48
52
```
53
+
49
54
Segment sends Page calls to UserLeap as a `pageview` which you can use as filtering criteria for your surveys.
50
55
51
56
Add Page URLs in your UserLeap [Events dashboard](https://app.userleap.com/events) and map them to your Segment Page call's `properties.url` field before you start sending Segment data to UserLeap.
52
57
53
-
54
58
## Alias
55
59
If you aren't familiar with the Segment Spec, take a look at the [Alias method documentation](https://segment.com/docs/connections/spec/alias/) to learn about what it does. An example call would look like:
0 commit comments