Skip to content

Commit dc906d4

Browse files
authored
Merge pull request #6879 from plotline-insights/plotline/destination
Documentation for Plotline Direct Destination
2 parents 3a2a4a2 + 652d4d2 commit dc906d4

File tree

1 file changed

+43
-0
lines changed
  • src/connections/destinations/catalog/plotline

1 file changed

+43
-0
lines changed
Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
---
2+
title: Plotline Destination
3+
id: 669f7b835aae8164929d000e
4+
beta: true
5+
---
6+
7+
[Plotline](https://www.plotline.so/?utm_source=segmentio&utm_medium=docs&utm_campaign=partners){:target="_blank”} is a mobile adoption platform that helps product and marketing teams launch experiences like Stories, Videos, Animations, Streaks, Floating buttons and more inside the app - without taking engineering effort.
8+
9+
This destination is maintained by Plotline. For any issues with the destination, contact Plotline's support team at support@plotline.so.
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 "Plotline".
14+
2. Select and click **Add Destination**.
15+
3. Select an existing source to connect to.
16+
4. Go to [Plotline's dashboard](app.plotline.so){:target="_blank”}, navigate to "Credentials" and copy the API key.
17+
5. Enter the API Key in the destination settings in Segment.
18+
19+
## Supported methods
20+
21+
Plotline supports the following methods, as specified in the [Segment Spec](https://github.com/segmentio/segment-docs/blob/develop/docs/connections/spec).
22+
23+
### Identify
24+
25+
Send Identify calls to update user attributes in Plotline. These user attributes can be used for setting up the audience in campaigns and personalizing the content in the campaigns. For example:
26+
27+
```
28+
analytics.identify('userId123', {
29+
name: 'John Doe'
30+
});
31+
```
32+
33+
Segment sends Identify calls to Plotline as an `identify` event.
34+
35+
### Track
36+
37+
Send Track calls to Plotline. Track calls are used for Plotline to know all user events and can be used for setting up the audience in campaigns and defining the goal events. For example:
38+
39+
```
40+
analytics.track('Checkout Completed')
41+
```
42+
43+
Segment sends Track calls to Plotline as a `track` event.

0 commit comments

Comments
 (0)