Files
Ethan Palm 4c31f3683c SEO: add keywords to pages (#1775)
* ai/ keywords

* api/ keywords

* components/ keywords

* create/ keywords

* customize/ keywords

* api-playground/ keywords

* dashboard/ keywords

* deploy/ keywords

* guides/ keywords

* insights/ keywords

* integrations/ keywords

* optimize/ keywords

* organize/ keywords

* root/ keywords

* rm temp files
2025-11-14 14:08:24 -08:00

55 lines
1.8 KiB
Plaintext

---
title: "Privacy integrations"
description: "Integrate with data privacy platforms for compliance."
keywords: ["data privacy platforms", "compliance integrations", "privacy tools", "cookie consent"]
---
<CardGroup>
<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
>
</Card>
</CardGroup>
## Enabling Data Privacy Integrations
You can add data privacy platforms onto your docs. Add the `integrations` field into your `docs.json` file with your respective scripts.
```json
"integrations": {
"osano": "SOURCE"
}
```
## 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
"integrations": {
"cookies": {
"key": "LOCAL STORAGE KEY",
"value": "LOCAL STORAGE VALUE"
}
}
```
If these values are set, local storage will be checked to see if the user has consented to cookies. If they have not, telemetry will be disabled.
If you'd like to disable telemetry for all users, you can add the following to your `docs.json` file:
```json
"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>