|
| 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. |
0 commit comments