Skip to main content
DELETE
https://apis.hopnow.io
/
v1
/
customers
/
{customer_id}
/
webhook-endpoints
/
{endpoint_id}
Delete Webhook Endpoint
curl --request DELETE \
  --url https://apis.hopnow.io/v1/customers/{customer_id}/webhook-endpoints/{endpoint_id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "object": "<string>",
  "deleted": true
}

Path Parameters

customer_id
string
required
The customer’s external ID (starts with cus_)
endpoint_id
string
required
The webhook endpoint’s external ID (starts with whep_)

Response

id
string
The deleted webhook endpoint ID
object
string
Always returns "webhook_endpoint"
deleted
boolean
Always returns true

Response Example

{
  "id": "whep_1234567890abcdef",
  "object": "webhook_endpoint",
  "deleted": true
}