Skip to content

Commit cf2db64

Browse files
adds docs for retentive integration
1 parent ab1c7fa commit cf2db64

File tree

1 file changed

+41
-0
lines changed
  • src/connections/destinations/catalog/retentive

1 file changed

+41
-0
lines changed
Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
[Retentive](https://retentive.io/?utm_source=segmentio&utm_medium=docs&utm_campaign=partners) makes your help docs searchable in product so your GTM team can act on data of what each customer is struggling with.
2+
3+
This destination is maintained by Retentive. For any issues with the destination, [contact the Retentive Support team](mailto:[email protected]).
4+
5+
## Getting Started
6+
7+
{% include content/connection-modes.md %}
8+
9+
1. From the Destinations catalog page in the Segment App, click **Add Destination**.
10+
2. Search for "Retentive" in the Destinations Catalog, and select the "Retentive" destination.
11+
3. Choose which Source should send data to the "Retentive" destination.
12+
4. Go to the [Retentive integrations tab](https://app.retentive.io/integrations).
13+
5. Toggle the Segment integration on, and copy the API key presented.
14+
6. Enter the "API Key" in the "Retentive" destination settings in Segment.
15+
16+
## Supported methods
17+
18+
Retentive supports the following methods, as specified in the [Segment Spec](/docs/connections/spec).
19+
20+
### Identify
21+
22+
Send [Identify](/docs/connections/spec/identify) calls to track user metadata alongside their search queries in the Retentive dashboard. For example:
23+
24+
```js
25+
analytics.identify('userId123', {
26+
27+
});
28+
```
29+
30+
Customer data will only be shown once they perform searches on Retentive.
31+
32+
### Alias
33+
34+
Send [Alias](/docs/connections/spec/alias) calls to merge customers from different destinations into a single customer in Retentive. For example:
35+
36+
```js
37+
analytics.alias(
38+
'primaryId',
39+
'previousId' // optional
40+
);
41+
```

0 commit comments

Comments
 (0)