# Delete a webhook

Deletes the webhook identified by webhook_id. Once removed, the webhook will no longer receive event notifications.

Endpoint: DELETE /webhooks/{webhook_id}
Version: 1.0.0
Security: basicAuth

## Path parameters:

  - `webhook_id` (integer, required)
    The ID of the webhook to delete
    Example: 152691

## Response 200 fields (application/json):

  - `http` (integer, required)
    HTTP status code
    Example: 200

  - `message` (string, required)
    Descriptive message confirming the webhook was removed
    Example: "The webhook (https://abby-example.com) has been removed from your account."

  - `webhook_id` (integer, required)
    Unique identifier of the deleted webhook
    Example: 152691

  - `webhook_url` (string, required)
    The URL of the deleted webhook
    Example: "https://abby-example.com"

  - `webhook_type` (string, required)
    Type of event the deleted webhook was subscribed to
    Enum: "send-envelope", "signed-envelope", "cancelled-envelope", "rejected-envelope", "bounced-envelope", "add-user", "add-contact", "opened-envelope", "add-template", "all", "signed-envelope-complete", "verify-envelope-widget", "signed-envelope-widget", "send-envelope-failed"


