> ## Documentation Index
> Fetch the complete documentation index at: https://developers.hubspot.com/docs/llms.txt
> Use this file to discover all available pages before exploring further.

---
id: 9de8bd63-a99e-4421-a300-7e0f9d0d4989
---

# Revoke cookie consent

Remove the consent banner cookies for a visitor, such as for GDPR deletion requests.

## Usage

```javascript theme={null}
var _hsq = (window._hsq = window._hsq || []);
_hsq.push(["revokeCookieConsent"]);
```

## Use Cases

* **GDPR Compliance**: Handle "right to be forgotten" requests.
* **Privacy Settings**: Allow users to revoke their consent.
* **Data Deletion**: Remove tracking consent as part of account deletion.
* **Privacy Reset**: Clear consent status for testing or troubleshooting.

## Notes

* This function removes the consent banner cookies from the visitor's browser.
* The visitor will see the consent banner again on their next visit.
* This does not delete historical data from HubSpot - it only affects future tracking.
* Use this in conjunction with other data deletion processes for complete GDPR compliance.
