Important: Guidelines on this page do not constitute legal advice. Consult with your legal team on compliance with privacy laws.
Background
Compliance to privacy-focused laws is fully supported in the Singular platform and we provide you the tools needed to utilize Singular to the fullest while remaining in compliance as new laws are enacted or old ones are newly interpreted.
General privacy laws such as GDPR, CCPA, and others, can require online services to have either an integrated consent gate or user-selectable options to disable tracking (generally referred to as the “Opt-In” and “Opt-Out” methods respectively).
Children's privacy laws such as COPPA can require online services that target mixed audiences of children and older users to have an Age Gate upon entry before any tracking of children can take place. This should be treated like the “Opt-In” method described below.
Note: For apps targeting solely children, review our Kids Apps SDKs FAQ and contact your account team for additional details on how to effectively utilize Singular in compliance with COPPA.
Opt-In
For the Opt-In Method, you should refrain from initializing Singular until you receive consent. Once consent is granted, you can initialize Singular and proceed as normal. Users should still have the opportunity to opt-out at a later time. For this case, also implement and follow the logic for the Opt-Out method.
Opt-Out
For opt-out, initialize Singular on app opens, but be sure to provide a mechanism that allows for opting out. If a user then proceeds to opt-out through the mechanism provided within the app, proceed to call the following to prevent anything further from being sent to Singular:
Singular.stopAllTracking()
If the user later decides to opt back in, call the following to resume sending data to Singular:
Singular.resumeAllTracking()
Note: These are generally accepted methods, but to determine the full interpretation of privacy laws and how they apply to your business, consult your own privacy or legal team.