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

# Delete Webhook Endpoint

> Delete a webhook endpoint

<Note>
  Deletion is a soft delete. The endpoint stops receiving events but remains visible in list results with a non-null
  `deleted_at`. Subsequent get, update, or delete requests for the endpoint return `404 Not Found`.
</Note>

## Path Parameters

<ParamField path="customer_id" type="string" required>
  The customer's external ID (starts with `cus_`)
</ParamField>

<ParamField path="endpoint_id" type="string" required>
  The webhook endpoint's external ID (starts with `wh_`)
</ParamField>

## Response

<ResponseField name="id" type="string">
  The deleted webhook endpoint ID
</ResponseField>

<ResponseField name="object" type="string">
  Always returns `"webhook_endpoint"`
</ResponseField>

<ResponseField name="deleted" type="boolean">
  Always returns `true`
</ResponseField>

## Response Example

```json theme={null}
{
  "id": "wh_1234567890abcdefghijklmn",
  "object": "webhook_endpoint",
  "deleted": true
}
```
