Skip to content

Commit d99fac2

Browse files
author
markzegarelli
authored
Add information about events Mutiny sends to Segment (#3681)
1 parent 24639bf commit d99fac2

File tree

1 file changed

+16
-4
lines changed
  • src/connections/destinations/catalog/mutiny

1 file changed

+16
-4
lines changed

src/connections/destinations/catalog/mutiny/index.md

Lines changed: 16 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,21 +31,33 @@ Page calls will be sent to Mutiny as an `impression`.
3131

3232
If you're not familiar with the Segment Specs, take a look to understand what the [Identify method](/docs/connections/spec/identify/) does. An example call would look like:
3333

34-
```
34+
```js
3535
analytics.identify('userId123', {
3636
3737
});
3838
```
3939

40-
Identify calls will be sent to Mutiny as an `identify` event. We use this in order to associate traits with an individual, which can be targeted for personalization in outbound email campaigns.
40+
Identify calls will be sent to Mutiny as an `identify` event. Segment uses this in order to associate traits with an individual, which can be targeted for personalization in outbound email campaigns.
4141

4242

4343
## Track
4444

4545
If you're not familiar with the Segment Specs, take a look to understand what the [Track method](/docs/connections/spec/track/) does. An example call would look like:
4646

47-
```
47+
```js
4848
analytics.track('Clicked Login Button')
4949
```
5050

51-
Track calls will be sent to Mutiny as a `track` event. Within the Mutiny dashboard, you can select which events signal a conversion for your website visitors. When a `track` event is processed for these events, a visitor will be marked as converted and that information will be displayed in the experiment results for a given experience.
51+
Track calls are sent to Mutiny as a `track` event. Within the Mutiny dashboard, you can select which events signal a conversion for your website visitors. When a `track` event is processed for these events, a visitor will be marked as converted and that information will be displayed in the experiment results for a given experience.
52+
53+
Mutiny's integration with Segment enables customers to use Segment events to track conversions in Mutiny. Mutiny also sends events *to* Segment to help track attribution for Mutiny experiences. Mutiny sends the `Mutiny Experience Viewed` with the `audienceSegment`, `experience`, and `personalized` properties. For example:
54+
55+
```js
56+
analytics.track('Mutiny Experience Viewed', {
57+
experience: 'Corporate Website Experiment',
58+
audienceSegment: 'Small company',
59+
personalized: true,
60+
});
61+
```
62+
63+
The `personalized` property is `true` for personalized experiences and `false` for a control views. For more information, contact [Mutiny Support](mailto:[email protected]).

0 commit comments

Comments
 (0)