Skip to content

Commit 7b659ca

Browse files
📝 Update index.md
1 parent 4b6134c commit 7b659ca

File tree

1 file changed

+16
-16
lines changed
  • src/connections/destinations/catalog/userpilot-mobile

1 file changed

+16
-16
lines changed

src/connections/destinations/catalog/userpilot-mobile/index.md

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22
title: Userpilot Mobile (Device Mode) Destination
33
---
44

5-
Userpilot helps product teams deliver personalized in-app experiences to increase growth metrics at every stage of the user journey. When you integrate Userpilot with Segment, you can send your Segment events to Userpilot, allowing you to create more personalized experiences for your users across the product lifecycle.
5+
Userpilot helps product teams deliver personalized in-app experiences to increase growth metrics at every stage of the user journey. When you integrate Userpilot with Segment, you can send your Segment events to Userpilot, enabling you to create more personalized experiences for your users across the product lifecycle.
66

77
[Userpilot](https://www.userpilot.com/?utm_source=segmentio&utm_medium=docs&utm_campaign=partners){:target="_blank"} provides in-app guidance, product tours, and contextual onboarding experiences to help teams activate users and drive feature adoption.
88

9-
This destination is maintained by Userpilot. For any issues with the destination, [contact the Userpilot Support team](mailto:[email protected]).
9+
Userpilot maintains this destination. For any issues with the destination, [contact the Userpilot Support team](mailto:[email protected]).
1010

1111
## Getting started
1212

13-
1. From your workspace's [Destination catalog page](https://app.segment.com/goto-my-workspace/destinations/catalog){:target="_blank"}, search for "Userpilot Mobile (Device Mode)".
13+
1. From your workspace's [Destination catalog page](https://app.segment.com/goto-my-workspace/destinations/catalog){:target="_blank"}, search for *Userpilot Mobile (Device Mode)*.
1414
2. Select **Userpilot Mobile** and click **Add Destination**.
1515
3. Select an existing Source to connect to Userpilot.
1616
4. Go to the [Userpilot installation dashboard](https://run.userpilot.io/installation){:target="_blank"}, and copy your **App Token**.
@@ -29,19 +29,18 @@ analytics.identify(userId: "<USER_ID>", traits: [
2929
"email": "[email protected]",
3030
"name": "John Doe",
3131
"plan": "Pro",
32-
"createdAt": "2023-08-01T00:00:00Z"
32+
"createdAt": "2019-10-17"
3333
])
3434
```
3535

36-
Calling `identify` from `Segment` will trigger the `userpilot.identify`. Segment recommends passing as much data as possible to get the most out of Userpilot.
36+
Calling Identify from Segment triggers `userpilot.identify`. Segment recommends passing as much data as possible to get the most out of Userpilot.
3737

38-
Data passed in an Identify call can be organized under different categories.
39-
* Properties about the user such as `plan` or `userRole` to help targeting a specifc segment
38+
Data passed in an Identify call can be organized under these different categories:
39+
* Properties about the user such as `plan` or `userRole` help target a specific segment
4040
* Properties to personalize the content of the Userpilot experiences, such as `name` or `company`
41-
* Properties to target users based on their lifecycle, such as `createdAt`, which allows you to target newly created accounts or accounts that have yet to achieve a certain feature in the user lifecyle
42-
43-
These appear within the Userpilot user dashboard and power audience segmentation and targeting.
41+
* Properties to target users based on their lifecycle, such as `createdAt`, which allows you to target newly created accounts or accounts that have yet to achieve a certain feature in the user lifecycle
4442

43+
These appear within Userpilot's user dashboard and power audience segmentation and targeting.
4544

4645
### Group
4746
Send [Group](/docs/connections/spec/group) calls to associate users with an account, organization, or project.
@@ -53,7 +52,7 @@ analytics.group(groupId: "<GROUP_ID>", traits: [
5352
])
5453
```
5554

56-
Segment sends Group calls to Userpilot as a `userpilot.identify` update with company-level traits, allowing you to use company metadata in targeting logic.
55+
Calling Group from Segment triggers `userpilot.identify` with company-level traits, allowing you to use company metadata in targeting logic.
5756

5857

5958
### Screen
@@ -63,7 +62,7 @@ Send [Screen](/docs/connections/spec/screen) calls to track navigation or screen
6362
analytics.screen(title: "Home")
6463
```
6564

66-
Segment sends Screen calls to Userpilot as a `userpilot.screen` event. This allows Userpilot to:
65+
Calling Screen from Segment triggers `userpilot.screen` event. This allows Userpilot to:
6766
* Trigger relevant experiences configured for specific pages/screens.
6867
* Check for ongoing experiences already running.
6968

@@ -73,11 +72,12 @@ Segment sends Screen calls to Userpilot as a `userpilot.screen` event. This allo
7372
Send [Track](/docs/connections/spec/track) calls to log user actions or custom events.
7473

7574
```swift
76-
analytics.track(name: "Button Clicked", properties: [
77-
"buttonColor": "green"
75+
analytics.track(name: "Added to Cart", properties: [
76+
"itemId" : "sku_456",
77+
"price" : 29.99
7878
])
7979
```
8080

81-
Segment sends Track calls to Userpilot as `userpilot.track`. These custom events can be used to:
82-
* Trigger specific experiences (e.g., a Caroucel or Survey)
81+
Calling Track from Segment triggers `userpilot.track`. These custom events can be used to:
82+
* Trigger specific experiences (for example, a Carousel or Survey)
8383
* Monitor user behavior for analytics or lifecycle targeting

0 commit comments

Comments
 (0)