Combine Fullstory and Adobe Target optimization to gain a deeper understanding of your website variations and their impact on client journeys. With this knowledge, you can make more informed decisions and manage a better digital experience for your clients. Understanding the impact of your optimization with Fullstory analytics will unlock faster time-to-market and client satisfaction with all of your product efforts.
Instructions
Follow the below instructions to integrate Adobe Target with Fullstory:
- Wherever you have deployed Adobe Target, whether via manual code deployment or by leveraging the Adobe Dynamic Tag Management (DTM) module, add the following Fullstory snippet:
document.addListener('at-request-succeeded', (event) => { if ( event && event.detail && event.detail.responseTokens && event.detail.responseTokens.length ){ registerFsReady( () => { for( let i=0, i<event.detail.responseTokens.length; i++ ){ FS.event("Experiment Viewed", event.detail.responseTokens[i]); } }); } } );
- Save and deploy the new snippet. This will push the Adobe Target data from the digital property to the Fullstory platform.
The above script utilizes an addListener
javascript call that listens for the Adobe Target event at-request-succeeded
. This is called whenever Adobe Target has run on a page. Then, it looks for any experiments, or responseTokens
, that are on the page and turns them into an FS.event
call with all the details. The events then appear in the session replay event stream and are searchable as segments.
Placing a listener on every event is one way to ensure every target event is ingested. Additionally, doing so makes these events searchable in Segments and Metrics as well as applicable to our analytics reporting tools like Funnels, Journeys, and Heatmaps.