Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Create index.md for Userlens By Wudpecker #7393

Merged
merged 3 commits into from
Jan 31, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
48 changes: 48 additions & 0 deletions src/connections/destinations/catalog/userlens/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
---
title: Userlens By Wudpecker Destination
id: 678b412b643761937104abb2
---


[Userlens By Wudpecker](https://userlens.io/?utm_source=segmentio&utm_medium=docs&utm_campaign=partners){:target="_blank"} is the Next-Gen of Product Intelligence. Userlens combines quantitative data from products like Segment and PostHog, and qualitative feedback from products like Intercom and Wudpecker user interviews, to give you a full picture of how your users are using your products and features.

This destination is maintained by Wudpecker. For any issues with the destination, [contact the Wudpecker Support team](mailto:[email protected]).


## Getting started


1. From your workspace's [Destination catalog page](https://app.segment.com/goto-my-workspace/destinations/catalog){:target="_blank"} search for *Userlens*.
2. Select *Userlens* and click **Add Destination**.
3. Select an existing Source to connect to the Userlens destination.
4. Go to the [Userlens settings](https://app.userlens.io/settings?tab=integrations&subtab=SEGMENT){:target="_blank"} in the Userlens app to copy the **API key**.
5. Enter the **API Key** in the Userlens destination settings in Segment.


## Supported methods

Userlens supports the following methods, as specified in the [Segment Spec](/docs/connections/spec).


### Identify

Send [Identify](/docs/connections/spec/identify) calls to identify users in Userlens. For example:

```js
analytics.identify('userId123', {
email: '[email protected]'
});
```

Segment sends Identify calls to Userlens as an `identify` event.


### Track

Send [Track](/docs/connections/spec/track) calls to add events in Userlens. For example:

```js
analytics.track('Login Button Clicked')
```

Segment sends Track calls to Userlens as a `track` event.
Loading