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

# Disable Webhook Endpoint

> Disable a webhook endpoint — pauses event delivery.

`POST /api/v1/businesses/:businessId/webhook-endpoints/:endpointId/disable-endpoint`

Disabled endpoints do not receive webhook deliveries. Events for this endpoint are not queued while disabled.

## Parameters

### Path

| Name         | Type     | Required | Description     |
| ------------ | -------- | -------- | --------------- |
| `businessId` | `string` | Yes      | The business ID |
| `endpointId` | `string` | Yes      | The endpoint ID |

## Request example

```shell theme={null}
curl --request POST 'https://payments.bleepay.com/api/v1/businesses/biz_abc/webhook-endpoints/wh_abc123/disable-endpoint' \
  --header 'Authorization: Bearer <business_token>' \
  --header 'Content-Type: application/json' \
  --data '{}'
```

## Response

Returns HTTP 200 with an empty body.
