Skip to content

add autopilot #2188

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 1 commit into from
Nov 24, 2021
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
55 changes: 55 additions & 0 deletions src/connections/destinations/catalog/autopilotapp/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
---
title: AutopilotApp Destination
rewrite: true
beta: true
---

[Autopilot](https://autopilotapp.com/?utm_source=segmentio&utm_medium=docs&utm_campaign=partners) helps thousands of organizations around the world automate their communications via email notifications, such as regular email newsletters, abandoned cart emails, as well as SMS messages, and more, to help organizations market and grow their businesses faster.

Once you connect Segment to AutopilotApp (the Autopilot product), you can leverage Autopilot's powerful [campaign](https://help.autopilotapp.com/user/latest/campaigns/) features on your Segment customer data.

This destination is maintained by Autopilot. For any issues with the destination, [contact the Autopilot Support team](mailto:help@autopilotapp.com).


## Getting Started

{% include content/connection-modes.md %}

1. From the Destinations catalog page in the Segment App, click **Add Destination**.
2. Search for "AutopilotApp" in the Destinations Catalog, and select the "AutopilotApp" destination.
3. Click **Configure AutopilotApp** and choose which Source should send data to the "AutopilotApp" destination.
4. If requested, specify the Destination Name for your "AutopilotApp" destination, and click **Save**.
5. Complete [integrating your Autopilot account with Segment](https://help.autopilotapp.com/user/latest/data-sources/configuring-a-new-data-source/3rd-party-integrations/segment.html), which automatically configures your Autopilot API keys within your "AutopilotApp" destination in Segment.


## Supported methods

Autopilot supports the following methods, as specified in the [Segment Spec](/docs/connections/spec).


### Identify

Send [Identify](/docs/connections/spec/identify) calls to create or update [people](https://help.autopilotapp.com/user/latest/people/) in Autopilot. For example:

```js
analytics.identify('userId123', {
firstName: 'John',
lastName: 'Doe',
email: 'john.doe@example.com'
});
```

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


### Track

Send [Track](/docs/connections/spec/track) calls to create or update [activities](https://help.autopilotapp.com/user/latest/activities/) (including activity attributes) in Autopilot. For example:

```js
analytics.track('Login Button Clicked', {
action: "login-clicked"
});
```

Segment sends Track calls to Autopilot as a `track` event.