# LGPD

The Brazilian General Data Protection Law, the Lei Geral de Proteção de Dados Pessoais ([LGPD](https://www.gov.br/anpd/pt-br/centrais-de-conteudo/outros-documentos-e-publicacoes-institucionais/lgpd-en-lei-no-13-709-capa.pdf)), 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](https://docs.digitalturbine.com/dt-fairbid/privacy/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.

{% hint style="warning" %}
If you do not pass the user's consent to the DT FairBid SDK, the SDK only shows contextual ads to that user, which might negatively reduce your revenue.
{% endhint %}

## User Consent Given

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

{% tabs %}
{% tab title="Android" %}
{% code title="Java" %}

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

{% endcode %}
{% endtab %}

{% tab title="iOS" %}
{% code title="Swift" %}

```swift
FairBid.user().setLGPDConsent = true
```

{% endcode %}

{% code title="Objective-C" %}

```objective-c
[FairBid user].setLGPDConsent = true;
```

{% endcode %}
{% endtab %}

{% tab title="Unity" %}
{% code title="C#" %}

```csharp
UserInfo.SetLgpdConsent(true);
```

{% endcode %}
{% endtab %}
{% endtabs %}

## User Consent NOT Given

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

{% tabs %}
{% tab title="Android" %}
{% code title="Java" %}

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

{% endcode %}
{% endtab %}

{% tab title="iOS" %}
{% code title="Swift" %}

```swift
FairBid.user().setLGPDConsent = false
```

{% endcode %}

{% code title="Objective-C" %}

```objective-c
[FairBid user].setLGPDConsent = false;
```

{% endcode %}
{% endtab %}

{% tab title="Unity" %}
{% code title="C#" %}

```csharp
UserInfo.SetLgpdConsent(false);
```

{% endcode %}
{% endtab %}
{% endtabs %}
