Skip to content

Commit 66333e0

Browse files
authored
Merge pull request #1849 from segmentio/2mee-docs
2mee Destination Docs
2 parents 87c96cc + 6827f59 commit 66333e0

File tree

2 files changed

+54
-5
lines changed

2 files changed

+54
-5
lines changed

src/_data/catalog/destinations.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ items:
44
- display_name: 2mee
55
name: 2mee
66
slug: 2mee
7-
hidden: true
7+
hidden: false
88
url: connections/destinations/catalog/2mee
99
previous_names:
1010
- 2mee
Lines changed: 53 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,55 @@
11
---
2-
title: '2mee Destination'
3-
hidden: true
4-
published: false
5-
beta: true
2+
title: 2mee Destination
3+
rewrite: true
64
---
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 it.
15+
3. Click **Configure 2mee**.
16+
4. Choose which Source should send data to the 2mee destination.
17+
5. Go to 2mee and copy the [API Key and Application ID](https://docs.2mee.com/documentation/segment) from the 2mee Dashboard.
18+
6. Go back to Segment and paste the API Key and Application ID you just copied in the 2mee destination settings. Make sure to paste the API Key in this format: `Bearer <API Key>`.
19+
20+
## Supported methods
21+
22+
2mee 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 check if a user exists within your application. For example:
27+
28+
```js
29+
{
30+
"type": "identify",
31+
"userId": "<userId>"
32+
}
33+
```
34+
35+
Segment sends Identify calls to 2mee as an `identify` event.
36+
37+
Identify calls with a `userId` not mapped to a device fails with a `400` error code.
38+
39+
## Track
40+
41+
Send [Track](/docs/connections/spec/track/) calls to track the actions your users perform.
42+
43+
Configure the HoloCapsule setting in the [2mee](https://go.2mee.com/) app.
44+
45+
Segment requires the `userId`. Track calls without a `userId` or with a `userId` not mapped to a device fail with a `400` code.
46+
47+
```js
48+
{
49+
"type": "track",
50+
"event": "<event_name>",
51+
"userId": "<userId>"
52+
}
53+
```
54+
Segment sends Track calls to 2mee as a `track` event.
55+

0 commit comments

Comments
 (0)