Skip to content

Commit 204326f

Browse files
authored
Merge pull request #6609 from martijn-churned/develop
docs: adds churned destination catalog documentation
2 parents 4ef6116 + c9fe80f commit 204326f

File tree

1 file changed

+52
-0
lines changed
  • src/connections/destinations/catalog/churned

1 file changed

+52
-0
lines changed
Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
---
2+
title: Churned Destination
3+
id: 6638e615c59c2acad44ec223
4+
beta: true
5+
---
6+
7+
[Churned](https://www.churned.io/?utm_source=segmentio&utm_medium=docs&utm_campaign=partners){:target="\_blank”} is an AI-powered customer success platform for subscription businesses, eliminating the need for rule-based decision making with live AI-driven actions. It uses machine learning to predict churn and drive customer retention.
8+
9+
This destination is maintained by Churned. For any issues with the destination, [contact the Churned Support team](mailto:[email protected]).
10+
11+
## Getting started
12+
13+
1. From your workspace's [Destination catalog page](https://app.segment.com/goto-my-workspace/destinations/catalog){:target="\_blank”} search for "Churned"
14+
2. Select "Churned" and click **Add Destination**
15+
3. Choose which Source should send data to the "Churned" destination.
16+
4. Enter the **API Key** you've received from Churned in the "Churned" destination settings in Segment.
17+
18+
## Supported methods
19+
20+
Churned supports the following methods, as specified in the [Segment Spec](/docs/connections/spec).
21+
22+
### Page
23+
24+
Send [Page](/docs/connections/spec/page) calls. For example:
25+
26+
```js
27+
analytics.page();
28+
```
29+
30+
Segment sends Page calls to Churned as a `pageview`.
31+
32+
### Identify
33+
34+
Send [Identify](/docs/connections/spec/identify) calls. For example:
35+
36+
```js
37+
analytics.identify("userId123", {
38+
39+
});
40+
```
41+
42+
Segment sends Identify calls to Churned as an `identify` event.
43+
44+
### Track
45+
46+
Send [Track](/docs/connections/spec/track) calls. For example:
47+
48+
```js
49+
analytics.track("Login Button Clicked");
50+
```
51+
52+
Segment sends Track calls to Churned as a `track` event.

0 commit comments

Comments
 (0)