Skip to content

Commit 510fd0f

Browse files
Documentation for Plotline Direct Destination
1 parent d89011e commit 510fd0f

File tree

1 file changed

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

1 file changed

+42
-0
lines changed
Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
---
2+
title: Plotline Destination
3+
---
4+
5+
[Plotline](https://www.plotline.so/?utm_source=segmentio&utm_medium=docs&utm_campaign=partners) 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.
6+
7+
This destination is maintained by Plotline. For any issues with the destination, contact Plotline's support team at [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) search for "Plotline".
12+
2. Select and click Add Destination.
13+
3. Select an existing Source to connect to .
14+
4. Go to [Plotline's dashboard](app.plotline.so), navigate to "Credentials" and copy the API key.
15+
5. Enter the API Key in the destination settings in Segment.
16+
17+
## Supported methods
18+
19+
Plotline supports the following methods, as specified in the [Segment Spec](https://github.com/segmentio/segment-docs/blob/develop/docs/connections/spec).
20+
21+
### Identify
22+
23+
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:
24+
25+
```
26+
analytics.identify('userId123', {
27+
name: 'John Doe'
28+
});
29+
```
30+
31+
Segment sends Identify calls to Plotline as an `identify` event.
32+
33+
### Track
34+
35+
36+
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:
37+
38+
```
39+
analytics.track('Checkout Completed')
40+
```
41+
42+
Segment sends Track calls to Plotline as a `track` event.

0 commit comments

Comments
 (0)