FullStory Destination
Destination Info
- Accepts Identify calls.
- Refer to it as FullStory in the Integrations object
Components
Additional versions of this destination are available
This page is about the FullStory Destination. See below for information about other versions of the FullStory destination:
FullStory (Classic) is in Maintenance mode
The FullStory (Classic) Destination has entered maintenance mode. Future updates are limited to security updates and bug fixes. A new version of this destination is available. See FullStory (Actions)
FullStory 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.
Getting Started
- From the Segment web app, click Catalog.
- Search for “FullStory” in the Catalog, select it, and choose which of your sources to connect the destination to. Note the source must be sending events using our JavaScript library Analytics.js.
- Add your
FS Org
in the destination settings. You can find this in FullStory by navigating toSettings
>General
> and copying the value found on the linewindow['_fs_org'] = 'fullstory_org_here';
Your changes appear in the Segment CDN in about 45 minutes, and then Analytics.js starts asynchronously loading FullStory’s recording snippet on your page and sending data.
Identify
If you’re not familiar with the Segment Specs, take a look to understand what the identify method does. Identify calls sent to Segment will be transformed and sent to FullStory’s FS.identify
method.
An example call which does not include a userId
will send FullStory the value of the anonymousId
and would look like:
analytics.identify();
If an identify
call does contain a userId
, that will be the ID sent along to FullStory.
analytics.identify("userId");
In addition, Segment will send over along any traits included in the identify
call. The example call below would send over both plan
and logins
.
analytics.identify("userId123", {
plan: "premium",
logins: 5
});
Specifying display name and email
Both email
and displayName
are special traits that will be passed to FullStory to be used in their interface as explained in FullStory’s docs. These traits are optional.
analytics.identify("userId123", {
email: "john.doe@example.com",
displayName: "John Doe"
});
Track
If you’re not familiar with the Segment Specs, take a look to understand what the track method does. Track calls sent to Segment will be automatically passed directly to FullStory using FullStory’s FS.event
method, including all the properties passed in the event.
An example call would look like:
analytics.track('Product Purchased', {
order_ID: '2969302398',
category: 'boots',
product_name: 'yellow_cowboy_boots',
price: 99.95,
currency: 'EUR'
});
Settings
Segment lets you change these destination settings from the Segment app without having to touch any code.
Setting | Description |
---|---|
Enter FS debug mode | boolean , defaults to FALSE . This will enable FullStory’s debug mode |
Capture only this iFrame | boolean , defaults to FALSE . This will enable FullStory within an iframe. |
FS Org (required) |
string . You can find your _fs_org on the FullStory settings page by logging into your account, clicking the settings icon on the bottom left, and looking in the recording snippet for window[‘_fs_org’] |
Track All Pages | boolean , defaults to FALSE . Sends all page calls as tracking events to FullStory. |
Track Categorized Pages | boolean , defaults to FALSE . Sends pages that specify a category to Fullstory as tracking events. |
Track Named Pages | boolean , defaults to FALSE . Sends pages with names to FullStory as tracking events. |
This page was last modified: 27 Oct 2023
Need support?
Questions? Problems? Need more info? Contact Segment Support for assistance!