Skip to content

Commit a2286d8

Browse files
Paul YooPaul Yoo
authored andcommitted
changes
1 parent 0f5d192 commit a2286d8

File tree

1 file changed

+7
-2
lines changed
  • src/connections/destinations/catalog/userleap

1 file changed

+7
-2
lines changed

src/connections/destinations/catalog/userleap/index.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ This destination is maintained by UserLeap. For any issues with the destination,
1717
4. Go to the [UserLeap dashboard](https://app.userleap.com/settings/installation), find and copy the **API key**.
1818
5. Enter the UserLeap API Key that you copied in the UserLeap destination settings in Segment.
1919

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
2121

2222
## Identify
2323
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:
@@ -28,31 +28,36 @@ analytics.identify('userId123', {
2828
lastName: 'Gibbon'
2929
})
3030
```
31+
3132
Use Segment's Identify method to identify your users in UserLeap. Segment `traits` map to UserLeap `attributes`.
3233

3334
**Important:** Only Identify calls can create new users in UserLeap.
3435

3536
## Track
3637
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+
3739
```js
3840
analytics.track('Button Clicked');
3941
```
42+
4043
Use Track calls to track events and use them as filtering criteria for your Surveys.
4144

4245
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.
4346

4447
## Page
4548
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+
4650
```js
4751
analytics.page()
4852
```
53+
4954
Segment sends Page calls to UserLeap as a `pageview` which you can use as filtering criteria for your surveys.
5055

5156
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.
5257

53-
5458
## Alias
5559
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:
60+
5661
```js
5762
analytics.alias('newUserId');
5863
```

0 commit comments

Comments
 (0)