Skip to content

Commit 895d191

Browse files
initial commit for engage messaging
1 parent 3a3d630 commit 895d191

File tree

1 file changed

+48
-0
lines changed
  • src/connections/destinations/catalog/engage-messaging

1 file changed

+48
-0
lines changed
Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
---
2+
title: Engage Destination
3+
---
4+
5+
## Engage Messaging
6+
7+
[Engage Messaging](https://engage.so/?utm_source=segmentio&utm_medium=docs&utm_campaign=partners) helps businesses send personalised messages to customers based on customer traits and actions.
8+
9+
This destination is maintained by Engage Messaging. For any issues with the destination, [contact the Engage Messaging Support team](mailto:[email protected]).
10+
11+
12+
## Getting Started
13+
14+
15+
1. From the Destinations catalog page in the Segment App, click **Add Destination**.
16+
2. Search for "Engage Messaging" in the Destinations Catalog, after selecting it, choose the Source that will send data to Engage Messaging.
17+
4. Go to your [Engage dashboard](https://app.engage.so/settings/account), find and copy your "Public API key".
18+
5. Enter the API Key in the destination settings in Segment.
19+
20+
## Supported methods
21+
22+
Engage Messaging supports the following methods, as specified in the [Segment Spec](/docs/connections/spec).
23+
24+
### Identify
25+
26+
Send [Identify](/docs/connections/spec/identify) calls to identify the user profile and traits on Engage. For example:
27+
28+
```js
29+
analytics.identify('userId123', {
30+
31+
});
32+
```
33+
34+
If the user already exists on Engage, identify can also be used to update the user traits.
35+
Segment sends Identify calls to Engage Messaging as an `identify` event.
36+
37+
38+
### Track
39+
40+
Send [Track](/docs/connections/spec/track) calls to track user events and actions. For example:
41+
42+
```js
43+
analytics.track('Login Button Clicked')
44+
```
45+
46+
Segment sends Track calls to Engage Messaging as a `track` event.
47+
48+
---

0 commit comments

Comments
 (0)