Skip to content

Commit 7ad7dbc

Browse files
authored
Merge pull request #2929 from segmentio/thomas/skalin
[index.md] add docs for new partner destination Skalin
2 parents ec81221 + d26175a commit 7ad7dbc

File tree

4 files changed

+85
-0
lines changed

4 files changed

+85
-0
lines changed

.github/Vocab/Docs/accept.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,7 @@ Optimizely
7070
performant
7171
Preact
7272
Shopify
73+
Skalin
7374
Smartly
7475
Subnet
7576
svg

src/_data/catalog/destinations.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35124,7 +35124,11 @@ items:
3512435124
display_name: Skalin
3512535125
name: Skalin
3512635126
slug: skalin
35127+
<<<<<<< HEAD
3512735128
hidden: true
35129+
=======
35130+
hidden: false
35131+
>>>>>>> 5dbaf28c (Update Catalog to include Skalin)
3512835132
endpoints:
3512935133
- us
3513035134
regions:
Lines changed: 79 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,79 @@
1+
---
2+
title: Skalin Destination
3+
id: 6256de4a1fe40d47ffb0b707
4+
---
5+
6+
7+
[Skalin](https://skalin.io/?utm_source=segmentio&utm_medium=docs&utm_campaign=partners){:target="_blank"} calculates your customer health score and alerts you as needed. This allows you to be more proactive, save time, and generate more revenue.
8+
9+
This destination is maintained by Skalin. For any issues with the destination, [contact the Skalin Support team](mailto:[email protected]).
10+
11+
12+
## Getting Started
13+
14+
{% include content/connection-modes.md %}
15+
16+
1. From the Destinations catalog page in the Segment App, click **Add Destination**.
17+
2. Search for **Skalin** in the Destinations Catalog, and select the **Skalin** destination.
18+
3. Choose which Source should send data to the Skalin destination.
19+
4. Go to the [Segment integration page in the Skalin platform](https://app.skalin.io/#/integration/segment){:target="_blank"}, and click **Connect** to create a configuration. Find and copy the **API Key** and and **Skalin Client ID** in the Segment connection section.
20+
5. Enter the **API Key** and **ClientID** in the Skalin destination settings in Segment.
21+
22+
## Supported methods
23+
24+
Skalin supports the following methods, as specified in the [Segment Spec](/docs/connections/spec).
25+
26+
### Page
27+
28+
Send [Page](/docs/connections/spec/page) calls to Skalin. For example:
29+
30+
```js
31+
analytics.page('myFeature')
32+
```
33+
34+
Segment sends Page calls to Skalin as a `feature`.
35+
36+
37+
### Screen
38+
39+
Send [Screen](/docs/connections/spec/screen) calls to Skalin. For example:
40+
41+
```obj-c
42+
[[SEGAnalytics sharedAnalytics] screen:@"Home"];
43+
```
44+
45+
Segment sends Screen calls to Skalin as a `feature`.
46+
47+
48+
### Identify
49+
50+
Send [Identify](/docs/connections/spec/identify) calls to Skalin. For example:
51+
52+
```js
53+
analytics.identify('userId123', {
54+
55+
});
56+
```
57+
58+
Optionally, you can provide your CustomerID:
59+
```js
60+
analytics.identify('userId123', {
61+
62+
trait: {
63+
groupId: 'myCustomerID'
64+
}
65+
});
66+
```
67+
68+
Segment sends Identify calls to Skalin as an `identity`.
69+
70+
71+
### Track
72+
73+
Send [Track](/docs/connections/spec/track) calls to Skalin. For example:
74+
75+
```js
76+
analytics.track('myFeature')
77+
```
78+
79+
Segment sends Track calls to Skalin as a `feature` event.

vale-styles/Vocab/Docs/accept.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,7 @@ Optimizely
7070
performant
7171
Preact
7272
Shopify
73+
Skalin
7374
Smartly
7475
Subnet
7576
svg

0 commit comments

Comments
 (0)