> For the complete Lynkow documentation index in agent-friendly format, see [llms.txt](/llms.txt).

# Withdraw analytics consent

**Publié le** : 2026-07-04
**Catégorie** : Analytics & Tracking

## `DELETE /analytics/consent`

**Withdraw analytics consent**

Withdraw analytics consent for the current visitor. Clears the
tracking cookie server-side and returns 204 No Content. No request
body is required; only the tracking cookie plus the site context
are read.

### Responses

| Status | Description |
| --- | --- |
| `204` | Deleted (no body) |


> **Notes:** Returns 204 No Content with an empty body. Rate-limit bucket:
> analytics (~1200 rpm per IP). Idempotent: calling it twice is safe.

### Examples

```curl
curl -X DELETE --cookie "lynkow_v_id=anon-01HZ..." "https://api.lynkow.com/storefront/{siteId}/analytics/consent"
```

```javascript
await fetch(`https://api.lynkow.com/storefront/${siteId}/analytics/consent`, {
  method: 'DELETE',
  credentials: 'include',
})
```

---