Skip to content

Commit 8b72125

Browse files
author
Thomas Gilbert
committed
[index.md] screeb documentation
1 parent e5f3fdd commit 8b72125

File tree

1 file changed

+60
-0
lines changed
  • src/connections/destinations/catalog/screeb

1 file changed

+60
-0
lines changed
Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
---
2+
title: Screeb Destination
3+
rewrite: true
4+
---
5+
6+
[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:
24+
25+
```js
26+
analytics.identify('userId123', {
27+
28+
});
29+
```
30+
31+
Segment sends Identify calls to Screeb as an `identity` event.
32+
33+
The traits provided along 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.
59+
60+
---

0 commit comments

Comments
 (0)