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

# Delete webhook endpoint

> Delete a webhook endpoint. Events will no longer be sent to this URL.



## OpenAPI

````yaml /openapi/v0/openapi.json delete /v0/webhooks/{id}
openapi: 3.0.0
info:
  title: Superbank API
  description: Superbank Developer API for Instant Settlement
  version: '1.0'
  contact: {}
servers:
  - url: https://api-sandbox.superbank.co
    description: Sandbox
security: []
tags: []
paths:
  /v0/webhooks/{id}:
    delete:
      tags:
        - Webhooks
      summary: Delete webhook endpoint
      description: Delete a webhook endpoint. Events will no longer be sent to this URL.
      operationId: OutboundWebhookController_deleteWebhook
      parameters:
        - name: id
          required: true
          in: path
          description: Webhook endpoint ID
          schema:
            example: wh_abc123
            type: string
      responses:
        '204':
          description: Webhook endpoint deleted successfully
        '401':
          description: Unauthorized - invalid or missing API key
        '404':
          description: Webhook endpoint not found
      security:
        - api-key: []
components:
  securitySchemes:
    api-key:
      type: apiKey
      in: header
      name: X-Api-Key

````