You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[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:info@churned.io).
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
+
email:"john.doe@example.com",
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