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

# Delete Webhook

> Delete a Novacal webhook to permanently stop event deliveries to its endpoint.

## What this endpoint is for

Permanently remove a webhook. Novacal stops sending deliveries to it immediately.

## Before you delete

* Deleting a webhook discards its signing secret. Registering the same URL again issues a new secret.
* To stop deliveries temporarily, set `is_active` to `false` with the [Update Webhook](/api-reference/v1/webhooks/update) endpoint instead.

## Access

You can only delete webhooks registered on your own account. Deleting another account's webhook returns `403 access_denied`.


## OpenAPI

````yaml DELETE /v1/webhooks/{id}
openapi: 3.1.0
info:
  title: Events API
  description: Public API for managing event types
  license:
    name: MIT
  version: 1.0.0
servers:
  - url: https://api.novacal.io
security:
  - bearerAuth: []
paths:
  /v1/webhooks/{id}:
    delete:
      description: Deletes a webhook. Novacal stops sending deliveries to it immediately.
      parameters:
        - name: id
          in: path
          description: ID of the webhook to delete
          required: true
          schema:
            type: integer
      responses:
        '204':
          description: Webhook deleted
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````