Skip to content

Commit 136c821

Browse files
committed
Rabble AI Destination Documentation
1 parent c3f4b79 commit 136c821

File tree

1 file changed

+51
-0
lines changed
  • src/connections/destinations/catalog/rabble-ai

1 file changed

+51
-0
lines changed
Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
## title: Rabble AI Destination
2+
3+
[Rabble AI](https://rabble.ai){:target="\_blank”} is an advanced AI platform which provides a simple and unique way for SaaS companies to understand their customers based on behavioral patterns in their existing engagement data.
4+
5+
Rabble securely ingests mountains of SaaS product engagement data through API or other data connections, analyzing it through hundreds of proven AI/ML models.  Our platform instantly creates an affinity map that identifies where customers are on their journeys, such as if they are product qualified for upgrade or cross-sell, or potentially at risk.
6+
7+
This destination is maintained by Rabble AI. For any issues with the destination, [contact the Rabble AI Support team](mailto:[email protected]).
8+
9+
## Getting started
10+
11+
1. From your workspace's [Destination catalog page](https://app.segment.com/goto-my-workspace/destinations/catalog){:target="\_blank”} search for "Rabble AI".
12+
2. Select Rabble AI and click **Add Destination**.
13+
3. Select an existing Source to connect to Rabble AI.
14+
4. Go to the [Rabble AI Data Source](https://app.rabble.ai/datasources){:target="\_blank"}, click Connect on Segment Integration to find and copy the **API key**.
15+
5. Enter the **API Key** in the Rabble AI destination settings in Segment.
16+
17+
## Supported methods
18+
19+
Rabble AI supports the following methods, as specified in the [Segment Spec](/docs/connections/spec).
20+
21+
### Page
22+
23+
Send [Page](/docs/connections/spec/page) calls to Rabble AI for analysis. For example:
24+
25+
```js
26+
analytics.page();
27+
```
28+
29+
Segment sends Page calls to Rabble AI as a `pageview`.
30+
31+
### Identify
32+
33+
Send [Identify](/docs/connections/spec/identify) calls to Rabble AI for analysis. For example:
34+
35+
```js
36+
analytics.identify("userId123", {
37+
company: "Sample Company, Inc.",
38+
});
39+
```
40+
41+
Segment sends Identify calls to Rabble AI as an `identify` event.
42+
43+
### Track
44+
45+
Send [Track](/docs/connections/spec/track) calls to Rabble AI for analysis. For example:
46+
47+
```js
48+
analytics.track("Login Button Clicked");
49+
```
50+
51+
Segment sends Track calls to Rabble AI as a `track` event.

0 commit comments

Comments
 (0)