Skip to content

Commit 02d446c

Browse files
authored
Merge pull request #277 from segmentio/repo-sync
repo sync
2 parents c3a07ce + f99bb60 commit 02d446c

File tree

2 files changed

+106
-0
lines changed

2 files changed

+106
-0
lines changed
Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
---
2+
title: Crossing Minds Destination
3+
id:
4+
hidden: true
5+
---
6+
7+
[Crossing Minds](https://crossingminds.com/){:target="blank"} is a recommendation platform for businesses using next-gen AI that instantly anticipates customers’ wants and needs using only anonymized user data.
8+
9+
Crossing Minds maintains this destination. For any issues with the destination, [contact the Crossing Minds Support team](mailto:[email protected]).
10+
11+
{% include content/beta-note.md %}
12+
13+
14+
## Getting Started
15+
16+
1. Contact your Crossing Minds Account Manager and request your integration API Key, API Password, and Database ID.
17+
2. From the Destinations catalog page in the Segment App, click **Add Destination**.
18+
3. In the Destinations Catalog, search for "Crossing Minds" and select the "Crossing Minds" destination.
19+
4. Choose which source should send data to the Crossing Minds destination.
20+
5. In the Crossing Minds destination settings in Segment, enter the Service Account Name as the **API Key**, Service Account Password as the **API Password**, and the **Database ID**.
21+
22+
23+
## Supported methods
24+
25+
Crossing Minds supports the following methods, as specified in the [Segment Spec](/docs/connections/spec).
26+
27+
28+
### Identify
29+
30+
Send [Identify](/docs/connections/spec/identify) calls to create or update a **Crossing Minds User** for any identified user on your site.
31+
32+
For example:
33+
```js
34+
analytics.identify('userId123', {
35+
36+
});
37+
```
38+
39+
Segment sends Identify calls to Crossing Minds as an `identify` event.
40+
41+
42+
### Track
43+
44+
Send [Track](/docs/connections/spec/track) calls to record User Interactions as:
45+
46+
* All actions listed under [Browsing overview](/docs/connections/spec/ecommerce/v2/#browsing-overview)
47+
* All actions listed under [Core Ordering Overview](/docs/connections/spec/ecommerce/v2/#core-ordering-overview)
48+
* All actions listed under [Wishlisting overview](/docs/connections/spec/ecommerce/v2/#wishlisting-overview)
49+
* All actions listed under [Sharing overview](/docs/connections/spec/ecommerce/v2/#sharing-overview)
50+
* All actions listed under [Reviewing overview](/docs/connections/spec/ecommerce/v2/#reviewing-overview)
51+
52+
53+
For example:
54+
55+
```js
56+
analytics.track('Login Button Clicked')
57+
```
58+
59+
Segment sends Track calls to Crossing Minds as a `track` event.
60+
Any events that are not listed in the mentioned categories will be rejected.
Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
---
2+
title: Retentive Destination
3+
id:
4+
hidden: true
5+
---
6+
[Retentive](https://retentive.io/?utm_source=segmentio&utm_medium=docs&utm_campaign=partners){:target="blank"} makes your help docs searchable in product so go-to-market teams can act on data that each customer struggles with.
7+
8+
Retentive maintains this destination. For any issues with the destination, [contact the Retentive 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. In the Destinations Catalog, search for "Retentive" and select the Retentive destination.
16+
3. Choose which source should send data to the Retentive destination.
17+
4. Navigate to the [Retentive integrations tab](https://app.retentive.io/integrations){:target="blank"}.
18+
5. Toggle the Segment integration on, and copy the API key presented.
19+
6. In the Retentive destination settings in Segment, enter the API key.
20+
21+
## Supported methods
22+
23+
Retentive supports the following methods, as specified in the [Segment Spec](/docs/connections/spec).
24+
25+
### Identify
26+
27+
Send [Identify](/docs/connections/spec/identify) calls to track user metadata alongside their search queries in the Retentive dashboard. For example:
28+
29+
```js
30+
analytics.identify('userId123', {
31+
32+
});
33+
```
34+
35+
Customer data only displays once customers perform searches on Retentive.
36+
37+
### Alias
38+
39+
Send [Alias](/docs/connections/spec/alias) calls to merge customers from different destinations into a single customer in Retentive. For example:
40+
41+
```js
42+
analytics.alias(
43+
'primaryId',
44+
'previousId' // optional
45+
);
46+
```

0 commit comments

Comments
 (0)