You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/connections/destinations/catalog/actions-fullstory/index.md
+35-1
Original file line number
Diff line number
Diff line change
@@ -15,12 +15,46 @@ versions:
15
15
16
16
[FullStory](https://www.fullstory.com/){:target="_blank"} lets product and support teams easily understand everything about the customer experience. The Segment integration for FullStory helps accurately identify your customers within the FullStory dashboard.
17
17
18
+
FullStory's device mode Segment integration auto-captures high-fidelity user sessions and allows you to enrich FullStory data by sending user properties, page properties, and custom events from your website so you can apply it to your analysis throughout FullStory. For example, you could build a funnel to analyze drop-off of users who engaged with a certain marketing campaign.
19
+
18
20
## Benefits of FullStory Device Mode (Actions) vs FullStory Classic
19
21
20
22
- Greater control over the page properties you send.
21
23
- Send events specific to individual pages.
22
24
- Select by name the specific user properties or custom events to send.
23
25
26
+
### Overview
27
+
28
+
The FullStory device mode destination sends information about your users, pages, and related events to FullStory. It uses the [FullStory Browser API](https://developer.fullstory.com/browser/getting-started/){:target="_blank"}. The recommended presets, ending in "V2", use the most up-to-date version of the [FullStory Browser API](https://developer.fullstory.com/browser/getting-started/){:target="_blank"}. The corresponding non-versioned presets use the [legacy FullStory Browser API](https://developer.fullstory.com/browser/v1/getting-started/).
29
+
30
+
#### Identify User V2:
31
+
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 the following:
32
+
33
+
```javascript
34
+
analytics.identify('userId123');
35
+
```
36
+
37
+
When you call `identify`, Segment calls FullStory's [Set Identity API](https://developer.fullstory.com/browser/identification/identify-users/){:target="_blank"}. Use this to identify a user and set custom attributes which can be used to search and segment within FullStory.
38
+
39
+
If an `identify` call contains a `userId`, it will be applied to the identifying `uid` in FullStory. All `traits` will be passed along as custom user properties with the exception of `traits.name` which is mapped to `displayName`. If you set an `anonymousId` in Segment, you can search for it under `segmentAnonymousId` in FullStory.
40
+
41
+
#### Track Custom Event V2:
42
+
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 the following:
43
+
44
+
```javascript
45
+
analytics.track('Clicked Button');
46
+
```
47
+
48
+
When you call `track`, Segment calls FullStory's [Track Event API](https://developer.fullstory.com/browser/capture-events/analytics-events/){:target="_blank"}. Use this to capture more context about your user’s experience on your site.
49
+
50
+
#### Viewed Page V2
51
+
If you're not familiar with the Segment Specs, take a look to understand what the [Page method](/docs/connections/spec/track/) does. An example call would look like the following:
52
+
53
+
```javascript
54
+
analytics.page('Retail Page');
55
+
```
56
+
57
+
When you call `page`, Segment calls FullStory's [Set Page Properties API](https://developer.fullstory.com/browser/set-page-properties/){:target="_blank"}. Use this to set custom page names and properties about pages your users visit. Either `category` or `name` with be mapped to FullStory's `pageName` property.
24
58
25
59
## Getting started
26
60
@@ -36,4 +70,4 @@ versions:
36
70
37
71
Follow the table below to map your existing FullStory destination configuration to FullStory Device Mode (Actions).
38
72
39
-
{% include components/actions-map-table.html name="fullstory" %}
73
+
{% include components/actions-map-table.html name="fullstory" %}
0 commit comments