Skip to content

Commit c5fca62

Browse files
docs: adds churned destination catalog documentation
1 parent 826710d commit c5fca62

File tree

1 file changed

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

1 file changed

+50
-0
lines changed
Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
---
2+
title: Churned Destination
3+
---
4+
5+
[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.
6+
7+
This destination is maintained by Churned. For any issues with the destination, [contact the Churned 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 "Churned"
12+
2. Select "Churned" and click **Add Destination**
13+
3. Choose which Source should send data to the "Churned" destination.
14+
4. Enter the **API Key** you've received from Churned in the "Churned" destination settings in Segment.
15+
16+
## Supported methods
17+
18+
Churned supports the following methods, as specified in the [Segment Spec](/docs/connections/spec).
19+
20+
### Page
21+
22+
Send [Page](/docs/connections/spec/page) calls. For example:
23+
24+
```js
25+
analytics.page();
26+
```
27+
28+
Segment sends Page calls to Churned as a `pageview`.
29+
30+
### Identify
31+
32+
Send [Identify](/docs/connections/spec/identify) calls. For example:
33+
34+
```js
35+
analytics.identify("userId123", {
36+
37+
});
38+
```
39+
40+
Segment sends Identify calls to Churned as an `identify` event.
41+
42+
### Track
43+
44+
Send [Track](/docs/connections/spec/track) calls. For example:
45+
46+
```js
47+
analytics.track("Login Button Clicked");
48+
```
49+
50+
Segment sends Track calls to Churned as a `track` event.

0 commit comments

Comments
 (0)