Skip to main content
Version: v2

Selectively capture parts of your site based on explicit user consent.

HTML Elements that have been configured to "Capture data with user consent" in FullStory's privacy settings are only captured after an invocation of FS('setIdentity', { consent: true }).

Parameters
    consent boolean required

    If true, elements or views within an application configured to capture with user consent in FullStory's privacy settings will begin capturing. If false, these elements will no longer be captured by FullStory.

Additional Information

FS('setIdentity', { consent })

Example Invocation

Start capturing elements
FS('setIdentity', { consent: true });
Stop capturing elements
FS('setIdentity', { consent: false });