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

# webhook_endpoints_delete

> Delete a webhook endpoint and stop its deliveries immediately. The signing secret goes with it. To stop deliveries and keep the configuration, set enabled=false with webhook_endpoints_update instead.

<div className="tool-route"><span className="tool-row-method" data-method="DELETE">DELETE</span><code>{"https://public-api.granola.ai/v1/webhook-endpoints/{webhookEndpointId}"}</code></div>

```python granola_webhook_endpoints_delete.py theme={null}
from charter.packs import granola

result = await granola.webhook_endpoints_delete.ainvoke({"webhookEndpointId": ...})
```

## Path parameters

<div className="reference-table">
  | Field                                                                     | Type     | Description                                                                                                         |
  | ------------------------------------------------------------------------- | -------- | ------------------------------------------------------------------------------------------------------------------- |
  | `webhookEndpointId` <span className="required" title="required">\*</span> | `string` | The ID of the webhook endpoint <span className="field-constraints">matches `^whe_[a-zA-Z0-9]&#123;14&#125;$`</span> |
</div>
