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

# Delete Web Tracking Key

> Permanently delete a publishable web tracking key

Permanently delete a web tracking key.

Cached authorization expires within one minute after deletion. Requests from any page still running the snippet are rejected after that, so remove the snippet from your site as well. Prefer [revoking](/api-reference/web-tracking-keys/update) with `isActive: false` when you may want the key back.

Requires an API key with the `integrations:manage` scope.

## Request

<ParamField path="id" type="string" required>
  Web tracking key ID.
</ParamField>

```bash theme={null}
curl -X DELETE "https://api.sequenzy.com/api/v1/web-tracking-keys/wtk_abc123" \
  -H "Authorization: Bearer YOUR_API_KEY"
```

## Responses

<ResponseExample>
  ```json 200 theme={null}
  {
    "success": true,
    "message": "Web tracking key deleted. Cached authorization expires within one minute, so remove the snippet too."
  }
  ```

  ```json 401 theme={null}
  {
    "error": "Missing API key. Provide via x-api-key header or Authorization: Bearer <key>"
  }
  ```

  ```json 403 theme={null}
  {
    "error": "API key is missing required scope: integrations:manage"
  }
  ```

  ```json 404 theme={null}
  {
    "error": "Web tracking key not found"
  }
  ```
</ResponseExample>
