> ## Documentation Index
> Fetch the complete documentation index at: https://tomee-mintlify-c1ec36c9.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Privacy integrations

> Manage GDPR-friendly cookie consent for your Mintlify docs with the built-in consent banner or third-party privacy platforms like Osano.

<Card title="Osano" href="/integrations/privacy/osano" icon={<svg width="32" height="32" className="h-6 w-6" viewBox="0 0 256 256" fill="none" xmlns="http://www.w3.org/2000/svg"><path fillRule="evenodd" clipRule="evenodd" d="M128 256C198.692 256 256 198.692 256 128C256 57.3076 198.692 0 128 0C57.3076 0 0 57.3076 0 128C0 198.692 57.3076 256 128 256ZM128 192C163.346 192 192 163.346 192 128C192 92.6538 163.346 64 128 64C92.6538 64 64 92.6538 64 128C64 163.346 92.6538 192 128 192Z" fill="#7764FA"/></svg>} horizontal>
  Manage cookie consent with [Osano](https://www.osano.com/).
</Card>

## Cookie consent banner

Mintlify includes a built-in cookie consent banner that asks visitors for consent before your site tracks analytics or marketing cookies. Use it if you need a lightweight way to comply with GDPR and similar regulations without setting up a third-party platform.

To turn the banner on or off:

1. In your dashboard, go to **Settings** > **Privacy**.
2. Toggle **Consent banner** on to show the banner to visitors, or off to hide it.

When the banner is enabled, analytics integrations only send events for visitors who grant consent. Revoking consent reloads the page so already-loaded analytics scripts are torn down.

## Cookie consent and disabling telemetry

If you need to check if a user has already consented to cookies for GDPR compliance, you can specify a local storage key and value under `cookies`:

```json theme={null}
  "integrations": {
    "cookies": {
      "key": "LOCAL STORAGE KEY",
      "value": "LOCAL STORAGE VALUE"
    }
  }
```

If you set these values, your site checks local storage for the specified key and value to determine if a user consented to cookies. If a user has not consented to cookies, your site disables telemetry for that user.

If you'd like to disable telemetry for all users, add the following to your `docs.json` file:

```json theme={null}
  "integrations": {
    "telemetry": {
      "enabled": false
    }
  }
```

<Note>
  If you disable telemetry, you cannot collect feedback on your documentation pages, even if you enable feedback in your dashboard.
</Note>
