> ## 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.

# Disable Webhook Endpoint

> Disable a webhook endpoint so it stops receiving deliveries

Disables a webhook endpoint so it stops receiving deliveries. No request body. Disabling is idempotent — repeating the call returns the same confirmation.

<Note>
  Events created before the endpoint was disabled may still be delivered (and retried) after disabling; only new events stop matching the endpoint.
</Note>

Disabled endpoints remain visible in [List Webhook Endpoints](/va/webhooks/list-endpoints) with `disabled_at` set.

## Path Parameters

<ParamField path="customer_id" type="string" required>
  Id of the owning customer (`cus_…`).
</ParamField>

<ParamField path="id" type="string" required>
  Id of the webhook endpoint (`wh_…`).
</ParamField>

## Response

A disable-confirmation object.

<ResponseField name="id" type="string">
  Id of the endpoint (`wh_…`).
</ResponseField>

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

<ResponseField name="disabled" type="boolean">
  Always `true`.
</ResponseField>

<ResponseExample>
  ```json Response theme={null}
  {
    "id": "wh_3f8a2b1c9d4ex0y1z2a3b4c5",
    "object": "webhook_endpoint",
    "disabled": true
  }
  ```
</ResponseExample>
