Skip to main content
DELETE
Delete Webhook Endpoint

Delete Webhook Endpoint

DELETE https://api.baanx.com/v1/webhooks/{id} Permanently deletes a webhook configuration.

Overview

Removes a webhook endpoint and stops all future event deliveries to it. This action cannot be undone. If you want to temporarily stop deliveries, consider disabling the webhook with is_active: false instead.
This action is permanent and irreversible. All configuration, including the signing key, will be lost. Event delivery to this endpoint will stop immediately.

Authentication

This endpoint requires authentication via Bearer token:

Request

Headers

string
required
Bearer token for authentication

Path Parameters

string (UUID)
required
Unique identifier of the webhook configuration to delete

Request Example

Response

200 Success

boolean
Indicates the webhook was deleted successfully

Error Responses

  • GET /v1/webhooks - List all remaining webhook endpoints
  • POST /v1/webhooks - Create a new webhook endpoint
  • PUT /v1/webhooks/{id} - Disable a webhook temporarily (is_active: false)