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:
Warning
This destination is currently under maintenance. Please check back later or contact support.
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.
- 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 Orgin 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.
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.
1analytics.identify("userId123", {2plan: "premium",3logins: 54});
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.
1analytics.identify("userId123", {2email: "john.doe@example.com",3displayName: "John Doe"4});
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:
1analytics.track('Product Purchased', {2order_ID: '2969302398',3category: 'boots',4product_name: 'yellow_cowboy_boots',5price: 99.95,6currency: 'EUR'7});
Segment lets you change these destination settings from the Segment app without having to touch any code.
Optional
This will enable FullStory's debug mode
falseOptional
This will enable FullStory within an iframe.
falseYou 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']
Optional
Sends all page calls as tracking events to FullStory.
falseOptional
Sends pages that specify a category to Fullstory as tracking events.
falseOptional
Sends pages with names to FullStory as tracking events.
false