Skip to content

Commit 7c88393

Browse files
Merge pull request #6791 from ozzy-cox/develop
Added userguiding destination documentation
2 parents 9b1ec1c + d58fb2b commit 7c88393

File tree

1 file changed

+49
-0
lines changed
  • src/connections/destinations/catalog/user_guiding

1 file changed

+49
-0
lines changed
Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
---
2+
title: UserGuiding Destination
3+
id: 6549f3d6f2f494b41bf941f8
4+
beta: true
5+
---
6+
7+
[UserGuiding](https://userguiding.com/?utm_source=segmentio&utm_medium=docs&utm_campaign=partners){:target="_blank”} is a product adoption platform that helps product teams automate in-app experiences that turn new users into champions.
8+
9+
10+
This destination is maintained by UserGuiding. For any issues with the source, [contact the UserGuiding Support team](mailto:[email protected]).
11+
12+
13+
## Getting Started
14+
15+
16+
17+
1. From your workspace's [Destination catalog page](https://app.segment.com/goto-my-workspace/destinations/catalog){:target="_blank”} search for UserGuiding.
18+
2. Select UserGuiding, and click **Add Destination**.
19+
3. Choose the source you want to connect UserGuiding destination to.
20+
4. Give the destination a name.
21+
5. Enter the API key provided in the [UserGuiding integrations page](https://panel.userguiding.com/settings/integrations/segment){:target="_blank”}.
22+
6. Select the data residency region for your UserGuiding account.
23+
24+
25+
## Identify
26+
27+
If you're not familiar with the Segment Spec, take a look to understand what the [Identify method](/docs/connections/spec/identify/) does. An example call would look like:
28+
29+
```js
30+
analytics.identify('user_id_123', {
31+
32+
firstname: 'john',
33+
lastname: 'doe'
34+
});
35+
```
36+
37+
Using the [Identify method](/docs/connections/spec/identify/) triggers a call to UserGuiding's [Identify](https://panel.userguiding.com/settings/installation){:target="_blank”} method. For more information about user identification in UserGuiding, see UserGuiding's [Sending user attributes and tracking user actions](https://help.userguiding.com/en/articles/5562847-sending-user-attributes-and-tracking-user-actions){:target="_blank”} documentation.
38+
39+
40+
## Track
41+
42+
If you're not familiar with the Segment Spec, take a look to understand what the [Track method](/docs/connections/spec/track/) does. An example call would look like:
43+
44+
```js
45+
analytics.track('Visited Products Page')
46+
```
47+
48+
Using the [Track method](/docs/connections/spec/track/) triggers a call to UserGuiding's `userGuiding.track` method. For more information about tracking user action in UserGuiding, see UserGuiding's [Sending user attributes and tracking user actions](https://help.userguiding.com/en/articles/5562847-sending-user-attributes-and-tracking-user-actions){:target="_blank”} documentation.
49+

0 commit comments

Comments
 (0)