Skip to content

Commit 59b1af3

Browse files
Merge pull request #1 from ScottLNorvell/scottnorvell/update-some-fullstory-docs
update FullStory Web Action documentation for v2 etc
2 parents e382fa1 + 8b6f807 commit 59b1af3

File tree

1 file changed

+35
-1
lines changed
  • src/connections/destinations/catalog/actions-fullstory

1 file changed

+35
-1
lines changed

src/connections/destinations/catalog/actions-fullstory/index.md

+35-1
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,46 @@ versions:
1515

1616
[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.
1717

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+
1820
## Benefits of FullStory Device Mode (Actions) vs FullStory Classic
1921

2022
- Greater control over the page properties you send.
2123
- Send events specific to individual pages.
2224
- Select by name the specific user properties or custom events to send.
2325

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.
2458

2559
## Getting started
2660

@@ -36,4 +70,4 @@ versions:
3670

3771
Follow the table below to map your existing FullStory destination configuration to FullStory Device Mode (Actions).
3872

39-
{% include components/actions-map-table.html name="fullstory" %}
73+
{% include components/actions-map-table.html name="fullstory" %}

0 commit comments

Comments
 (0)