COPPA Support in the Adobe Visitor ID Service coppa-support-in-the-experience-cloud-id-service

The Children’s Online Privacy Protection Act (COPPA) prohibits the online collection of personal information from children under 13 years old without verifiable parental consent. Customers concerned about COPPA can add an optional variable to their Visitor ID Service code that prevents it from setting cookies in the third-party domain of a browser.

NOTE
For version 3.0.0 or greater.

Cookies and Tracking

When a web page loads, the Visitor ID Service calls an Adobe data collection server (DCS). The DCS response includes a CX Enterprise cookie and a demdex.net cookie.

  • The CX Enterprise cookie is set in the first party domain. It cannot be used to track visitors across different domains, unless those domains work together to allow access.
  • The demdex.net cookie is set in the third-party domain. It contains a unique identifier that can be used to track visitors across different domains.

Cookies and COPPA Compliance

Third-party cookies that track visitors across different domains on websites directed to (or primarily for) children, trigger COPPA parental consent requirements. To more easily comply with COPPA for internal website analytics, add the variable disableThirdPartyCookies:true to the Visitor.getInstance function as shown below.

//Call the Visitor ID Service
var visitor = Visitor.getInstance("insert marketing cloud ID here", {

    //Set disableThirdPartyCookies configuration param
    disableThirdPartyCookies: true

    ...
});

When set to true, the disableThirdPartyCookies object stops the DCS from returning the third-party demdex.net cookie. If a site visitor already has this cookie in their browser, the Visitor ID Service won’t use it to create a new ECID or return an existing ID. Instead, the Visitor ID Service creates a new, random ID in the first-party cookie. Once enabled, you can collect data with the Visitor ID Service and share it across different CX Enterprise solutions, including other internal operations allowed by COPPA.

recommendation-more-help
id-service-help