Skip to main content
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

NameTypeRequiredDescription
businessIdstringYesThe business ID
endpointIdstringYesThe endpoint ID

Request example

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.