It’s happening! Demo Dundies is back with Season 2 🚀
Nominate your best demos
Storylane Docs
LoginStart free
  • Storylane Knowledge Base
  • Storylane Playbooks
  • Product Updates
  • Customer Showcase
  • 👋Welcome to Storylane
  • 🚀Quick Start Guide
  • 📸RECORDING DEMOS
    • HTML Demo
    • Screenshot Demo
    • Other Recording Options
  • 💻EDITING DEMOS
    • Editing HTML Screens
    • Editing Screenshot Screens
    • Guided Steps
      • Video Clips
      • Video Overlays & Voiceovers
    • Chapters & Product Tour
    • Personalization
    • Demo Settings
  • 🎊SHARING DEMOS
    • Embed
    • Share Link
      • Share via Extension
      • Share via Gmail Plugin
      • Share via HubSpot
      • Share via Salesforce
    • Socials and Email Campaigns
    • Conference Mode
    • Exports & Downloads
    • Demo protection and security
  • 🌟AI Suite
    • Meet Lily Sales Agent
    • Create Demos with AI 🚀
      • Create & Improve with AI
      • AI Video Avatars
      • AI Voiceovers
      • AI HTML Editor
      • AI Translation
  • 🌐BUYER HUB
    • Buyer Hub Overview
    • Buyer Hub Configuration
    • Buyer Hub Analytics
  • 🖱️Sandbox Demo
    • Sandbox Configuration
  • 📈ANALYTICS
    • Capture Leads
    • Lead Attribution
    • Tracking and Analyzing
      • Analyzing Demo Performance
    • Account-Level Insights
    • Viewer Data Enrichment
  • 🔗Integrations
    • Integrations
      • HubSpot
        • HubSpot Lead Forms
        • Hubspot Integration Features
        • Hubspot Website Embeds
        • Storylane App for HubSpot
        • Matching HubSpot Tokens to Storylane Tokens
      • Marketo
        • Marketo Lead Forms
      • Pardot
        • Custom Pardot Form
      • Salesforce
        • Storylane App for Salesforce
      • Slack
      • FreshSales
      • Dynamics 365
      • Zapier
      • Google Tag Manager
      • Google Analytics
      • Gmail
      • Segment
      • Intercom
      • Clearbit
      • SourceForge
      • G2
      • Webhooks
      • Cross-Frame Events
      • External API
  • 🤓Account
    • Managing Demos
    • Managing Team
    • Branding
      • Custom Theme
      • Custom Domain
  • 🔒Trust and Security
    • GDPR Compliance
    • SSO
    • FAQs
      • How and Why to use Cookie Tracking?
      • How to capture HTML screens from multiple tabs?
      • How to edit the background of a screen with a pop-up?
      • How to copy a chapter to a demo?
      • How to add pop-up message for non-clickable elements?
      • How to Add/Embed a Storylane Demo in a Zendesk Article
      • Customizing and Tracking Demo URL Links
      • How to combine Desktop and Mobile captures?
      • If I Cancel My Subscription, What Happens To My Demos?
      • What accessibility standards do you support?
      • Why is part of my demo cut off?
      • How to add or subtract a Date & Time token?
      • How to Install & Connect Storylane via HubSpot Marketplace?
      • How do I send data to 6Sense?
      • Lead Attribution Tracking?
      • How to record a video avatar?
      • How to rearrange folders?
      • Do I need to update my cookie policy if I use Storylane?
      • Is it possible to connect a LinkedIn tracking pixel to Storylane?
Powered by GitBook
On this page
  • Can Storylane Demos Withhold Tracking Until Consent is Granted?
  • Storylane’s Approach to “Do Not Track”
  • Implementing User Consent for Tracking in Storylane Demos
  • Code Snippet for Consent Communication
  • Data Security and Privacy Standards
  • Contact for GDPR Compliance and Support
  1. Trust and Security

GDPR Compliance

PreviousCustom DomainNextSSO

Last updated 1 month ago

Storylane is GDPR compliant and our DPA is available in the Storylane Trust Center.

Can Storylane Demos Withhold Tracking Until Consent is Granted?

To meet GDPR requirements, Storylane offers options to manage tracking based on user consent. When a demo is embedded on a website that requires consent to track cookies, Storylane’s setup allows tracking to be paused until the user gives consent.

Storylane’s tracker uses cookies to understand user interactions within demos. While no personally identifiable information (PII) is collected, these cookies provide insights into user behavior, which is considered personal data under GDPR.

Websites that require cookie consent will display a user interface (UI) element prompting visitors to accept or decline cookies. This UI component can vary in complexity, offering users choices regarding analytics, marketing, or other tracking categories.

Applies only to embedded demos. Direct demo links (Storylane URLs) are tracked normally.

Storylane’s Approach to “Do Not Track”

Storylane provides an option to disable tracking until a user consents to cookie use on the host website. By default, user activities such as clicks and navigation within Storylane demos are recorded to deliver analytics to our customers. However, we recognize that in certain cases, users might want to limit tracking until consent is explicitly granted.

Steps to Enable Do Not Track:

  1. In your Storylane account, navigate to the “Settings” page, then "Workspace", lastly "Config".

  2. Toggle the Disable Tracking on Demos option to prevent tracking without explicit consent.

  3. Once enabled, no user activity within Storylane embedded demos will be recorded until the user approves tracking.

This option is available on all Storylane plans.

Implementing User Consent for Tracking in Storylane Demos

If your website requests users' consent for cookie usage, Storylane can honor this consent once it is granted. However, enabling this feature requires a small code snippet on your website to communicate the consent status to embedded Storylane demos.

Sequence Diagram of How This Works:

  • The user interacts with the Site and sees a cookie consent banner.

  • If the User approves, the Site sends consent approval to Storylane via a postMessage event.

  • Storylane receives the message and begins tracking user interactions within the demo.

Code Snippet for Consent Communication

To inform Storylane that consent has been provided, insert this JavaScript after the user consents:

<script>
var storylaneDemos = document.querySelectorAll("iframe[name='sl-embed']");
storylaneDemos.forEach(function(slDemo) { 
  slDemo.contentWindow && slDemo.contentWindow.postMessage({ message: 'storylane-cookie-consent' }, '*');
});
</script>

When this code executes, all interactions within Storylane demos are sent to the analytics server only if consent has been granted.

Data Security and Privacy Standards

Storylane applies advanced security practices to protect all user data:

  • Data Encryption: All data is encrypted during transmission and storage.

  • Access Control: Access to personal data is limited to authorized personnel only.

  • Regular Audits: Our systems undergo regular security audits to maintain GDPR compliance and data integrity.

Contact for GDPR Compliance and Support

If you have questions about GDPR compliance or need help managing consent in Storylane demos, please contact us via privacy@storylane.io.

.

🔒