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
[Screeb](https://screeb.app/?utm_source=segmentio&utm_medium=docs&utm_campaign=partners) helps teams to get actionnable feedback without ruining user experience.
7
+
8
+
This destination is maintained by Screeb. For any issues with the destination, [contact the Screeb Support team](mailto:[email protected]).
9
+
10
+
## Getting Started
11
+
12
+
{% include content/connection-modes.md %}
13
+
14
+
1. From the Destinations catalog page in the Segment App, click **Add Destination**.
15
+
2. Search for "Screeb" in the Destinations Catalog, and select the "Screeb" destination.
16
+
3. Choose which Source should send data to the "Screeb" destination.
17
+
4. Go to the [Screeb platform](https://admin.screeb.app/) > Integration, and install the Segment connector.
18
+
5. Find and copy the "API Key".
19
+
6. Enter the "API Key" in the "Screeb" destination settings in Segment.
20
+
21
+
## Identify
22
+
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:
Segment sends Identify calls to Screeb as an `identity` event.
32
+
33
+
The traits provided along with the identity can be listed on the [Screeb platform](https://admin.screeb.app/) > Settings. Surveys can be customized or displayed according to identity properties.
34
+
35
+
36
+
## Track
37
+
38
+
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:
39
+
40
+
```js
41
+
analytics.track('Login Button Clicked')
42
+
```
43
+
44
+
Segment sends Track calls to Screeb as an `event.track` event.
45
+
46
+
The provided events can be listed on the [Screeb platform](https://admin.screeb.app/) > Settings. Surveys can be displayed according to event rules.
47
+
48
+
## Alias
49
+
50
+
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:
51
+
52
+
```js
53
+
analytics.alias('newUserId')
54
+
```
55
+
56
+
Segment sends Alias calls to Screeb as an `identity.alias` event.
57
+
58
+
**Important:** After this call, the Screeb respondent will have 3 aliases for the same identity: previous userId, anonymousId and `newUserId`. Merge of responses and events will be added in the future.
0 commit comments