Skip to contentSkip to navigationSkip to topbar
Page toolsOn this page
Looking for more inspiration?Visit the

Retentive Destination


Retentive(link takes you to an external page) makes your help docs searchable in product so go-to-market teams can act on data that each customer struggles with.

Retentive maintains this destination. For any issues with the destination, contact the Retentive Support team.


Getting Started

getting-started page anchor
  1. From the Destinations catalog page in the Segment App, click Add Destination.
  2. In the Destinations Catalog, search for "Retentive" and select the Retentive destination.
  3. Choose which source should send data to the Retentive destination.
  4. Navigate to the Retentive integrations tab(link takes you to an external page).
  5. Toggle the Segment integration on, and copy the API key presented.
  6. In the Retentive destination settings in Segment, enter the API key.

Retentive supports the following methods, as specified in the Segment Spec.

Identify

identify page anchor

Send Identify calls to track user metadata alongside their search queries in the Retentive dashboard. For example:

1
analytics.identify('userId123', {
2
email: 'john.doe@example.com'
3
});

Customer data only displays once customers perform searches on Retentive.

Send Alias calls to merge customers from different destinations into a single customer in Retentive. For example:

1
analytics.alias(
2
'primaryId',
3
'previousId' // optional
4
);