Skip to content

Documentation for Plotline Direct Destination #6879

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 6 commits into from
Aug 6, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
43 changes: 43 additions & 0 deletions src/connections/destinations/catalog/plotline/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
---
title: Plotline Destination
id: 669f7b835aae8164929d000e
beta: true
---

[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.

This destination is maintained by Plotline. For any issues with the destination, contact Plotline's support team at support@plotline.so.

## Getting started

1. From your workspace's [Destination catalog page](https://app.segment.com/goto-my-workspace/destinations/catalog){:target="_blank”} search for "Plotline".
2. Select and click **Add Destination**.
3. Select an existing source to connect to.
4. Go to [Plotline's dashboard](app.plotline.so){:target="_blank”}, navigate to "Credentials" and copy the API key.
5. Enter the API Key in the destination settings in Segment.

## Supported methods

Plotline supports the following methods, as specified in the [Segment Spec](https://github.com/segmentio/segment-docs/blob/develop/docs/connections/spec).

### Identify

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:

```
analytics.identify('userId123', {
name: 'John Doe'
});
```

Segment sends Identify calls to Plotline as an `identify` event.

### Track

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:

```
analytics.track('Checkout Completed')
```

Segment sends Track calls to Plotline as a `track` event.
Loading