Skip to content

Commit 2e1a768

Browse files
authored
Merge pull request #142 from segmentio/repo-sync
repo sync
2 parents 46eefef + b4c12e4 commit 2e1a768

File tree

1 file changed

+55
-0
lines changed
  • src/connections/destinations/catalog/autopilotapp

1 file changed

+55
-0
lines changed
Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
---
2+
title: AutopilotApp Destination
3+
rewrite: true
4+
beta: true
5+
---
6+
7+
[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.
8+
9+
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.
10+
11+
This destination is maintained by Autopilot. For any issues with the destination, [contact the Autopilot Support team](mailto:[email protected]).
12+
13+
14+
## Getting Started
15+
16+
{% include content/connection-modes.md %}
17+
18+
1. From the Destinations catalog page in the Segment App, click **Add Destination**.
19+
2. Search for "AutopilotApp" in the Destinations Catalog, and select the "AutopilotApp" destination.
20+
3. Click **Configure AutopilotApp** and choose which Source should send data to the "AutopilotApp" destination.
21+
4. If requested, specify the Destination Name for your "AutopilotApp" destination, and click **Save**.
22+
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.
23+
24+
25+
## Supported methods
26+
27+
Autopilot supports the following methods, as specified in the [Segment Spec](/docs/connections/spec).
28+
29+
30+
### Identify
31+
32+
Send [Identify](/docs/connections/spec/identify) calls to create or update [people](https://help.autopilotapp.com/user/latest/people/) in Autopilot. For example:
33+
34+
```js
35+
analytics.identify('userId123', {
36+
firstName: 'John',
37+
lastName: 'Doe',
38+
39+
});
40+
```
41+
42+
Segment sends Identify calls to Autopilot as an `identify` event.
43+
44+
45+
### Track
46+
47+
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:
48+
49+
```js
50+
analytics.track('Login Button Clicked', {
51+
action: "login-clicked"
52+
});
53+
```
54+
55+
Segment sends Track calls to Autopilot as a `track` event.

0 commit comments

Comments
 (0)