Skip to content

Commit 84c134c

Browse files
adds docs for crossing minds
1 parent ab1c7fa commit 84c134c

File tree

1 file changed

+54
-0
lines changed
  • src/connections/destinations/catalog/crossing-minds

1 file changed

+54
-0
lines changed
Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
[Crossing Minds](https://crossingminds.com/) provides a recommendation platform for businesses using next-gen AI that instantly anticipate customers’ wants and needs using only anonymized user data.
2+
3+
This destination is maintained by Crossing Minds. For any issues with the destination, [contact the Crossing Minds Support team](mailto:[email protected]).
4+
5+
{% include content/beta-note.md %}
6+
7+
8+
## Getting Started
9+
10+
1. Contact your Crossing Minds Account Manager and request your integration API Key, API Password, and Database ID.
11+
2. From the Destinations catalog page in the Segment App, click **Add Destination**.
12+
3. Search for "CrossingMinds" in the Destinations Catalog, and select the "CrossingMinds" destination.
13+
4. Choose which Source should send data to the "CrossingMinds" destination.
14+
5. Enter the Service Account Name as "API Key" Service Account Password as "API Password" and "Database ID" in the "Crossing Minds" destination settings in Segment.
15+
16+
17+
## Supported methods
18+
19+
Crossing Minds supports the following methods, as specified in the [Segment Spec](/docs/connections/spec).
20+
21+
22+
### Identify
23+
24+
Send [Identify](/docs/connections/spec/identify) calls to create or update a **Crossing Minds User** for any identified user on your site.
25+
26+
For example:
27+
```js
28+
analytics.identify('userId123', {
29+
30+
});
31+
```
32+
33+
Segment sends Identify calls to CrossingMinds as an `identify` event.
34+
35+
36+
### Track
37+
38+
Send [Track](/docs/connections/spec/track) calls to record User Interactions as:
39+
40+
* All actions listed under [Browsing overview](/docs/connections/spec/ecommerce/v2/#browsing-overview)
41+
* All actions listed under [Core Ordering Overview](/docs/connections/spec/ecommerce/v2/#core-ordering-overview)
42+
* All actions listed under [Wishlisting overview](/docs/connections/spec/ecommerce/v2/#wishlisting-overview)
43+
* All actions listed under [Sharing overview](/docs/connections/spec/ecommerce/v2/#sharing-overview)
44+
* All actions listed under [Reviewing overview](/docs/connections/spec/ecommerce/v2/#reviewing-overview)
45+
46+
47+
For example:
48+
49+
```js
50+
analytics.track('Login Button Clicked')
51+
```
52+
53+
Segment sends Track calls to CrossingMinds as a `track` event.
54+
Any events that are not listed in the mentioned categories will be rejected.

0 commit comments

Comments
 (0)