LGPD

The Brazilian General Data Protection Law, the Lei Geral de Proteção de Dados Pessoais (LGPDarrow-up-right), requires you to scope your user consent. The LGPD applies if any of the following is conditions are met:

  • The user is currently located in Brazil.

  • The user registers with the app as a Brazilian resident.

  • The app specifically targets Brazilian users.

For more information about how DT applies LGDP, see LGPD.

DT recommends that the first time you gather a user's consent, pass it to the DT FairBid SDK before initializing it. The SDK considers the user's consent when initializing. For future sessions, call the API if the user updates their consent, as the SDK caches the consent.

circle-exclamation

To indicate that the user gives consent, use the following API:

Java
UserInfo.setLgpdConsent(true, context);
      // true if you have the user’s consent

To indicate that the user does not give consent, use the following API:

Java
UserInfo.setLgpdConsent(false, context);
      // false if you have the user’s consent

Last updated