Skip to content

Commit 474bf4c

Browse files
Paul YooPaul Yoo
authored andcommitted
index.md
1 parent 73941cc commit 474bf4c

File tree

1 file changed

+51
-0
lines changed
  • src/connections/destinations/catalog/2mee

1 file changed

+51
-0
lines changed
Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
---
2+
title: ActiveCampaign Destination
3+
rewrite: true
4+
---
5+
[2mee](https://2mee.com ) is a Human Hologram platform that automatically cuts the person out from the background, removing the visual clutter, and places them in the familiar context of your phone or website so that they dominate the screen.
6+
7+
This destination is maintained by 2mee. For any issues with the destination, [contact the 2mee Support team](mailto:[email protected])
8+
9+
## Getting Started
10+
11+
{% include content/connection-modes.md %}
12+
13+
1. From the Destinations catalog page in the Segment App, click **Add Destination**.
14+
2. Search for “2mee” in the Destinations Catalog, and select the 2mee destination.
15+
3. Choose which Source should send data to the 2mee destination.
16+
4. Copy the [API Key and Application ID](https://docs.2mee.com/documentation/segment) from the 2mee Dashboard.
17+
5. Back in the Segment App, paste the API Key and Application ID you just copied in the 2mee destination settings. Note that the API Key should be pasted in this format: `Bearer <API Key>`.
18+
19+
## Supported methods
20+
21+
2mee supports the following methods, as specified in the [Segment Spec](/docs/connections/spec).
22+
23+
### Identify
24+
25+
Send [Identify](https://segment.com/docs/connections/spec/identify/) calls to check if a user exists within your application. For example:
26+
27+
```js
28+
{
29+
"type": "identify",
30+
"userId": "<userId>"
31+
}
32+
```
33+
34+
Segment sends Identify calls to 2mee as an `identify` event.
35+
36+
Identify calls with a `userId` not mapped to a device fails with a `400` error code.
37+
38+
## Track
39+
40+
Configure the HoloCapsule setting in the [2mee](https://go.2mee.com/) app.
41+
42+
The `userId` field is required. Track calls without a `userId` or with a `userId` not mapped to a device fail with a `400` code.
43+
44+
```js
45+
{
46+
"type": "track",
47+
"event": "<event_name>",
48+
"userId": "<userId>"
49+
}
50+
```
51+
Segment sends Track calls to 2mee as a `track` event.

0 commit comments

Comments
 (0)