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

# Unregister webhook

> Clear the global webhook URL for your account. Succeeds whether or not a URL is currently registered. Jobs submitted afterwards deliver no callback unless the request carries its own `webhook_url` field.



## OpenAPI

````yaml api-reference/openapi.json DELETE /api/v1/webhook/register
openapi: 3.1.0
info:
  title: Omnifence API
  description: >-
    Content moderation API. Clients submit images or videos which pass through a
    classification pipeline and receive a pass/reject decision.
  version: 1.0.0
  contact:
    email: support@omnifence.ai
servers:
  - url: http://localhost:3051
    description: Local development
security:
  - bearerAuth: []
tags:
  - name: Moderation
    description: Submit moderation jobs
  - name: Jobs
    description: Query job status and progress
  - name: Webhooks
    description: Webhook registration
  - name: Account
    description: Authenticated client account settings
paths:
  /api/v1/webhook/register:
    delete:
      tags:
        - Webhooks
      summary: Unregister webhook
      description: >-
        Clear the global webhook URL for your account. Succeeds whether or not a
        URL is currently registered. Jobs submitted afterwards deliver no
        callback unless the request carries its own `webhook_url` field.
      operationId: unregisterWebhook
      responses:
        '204':
          description: Default Response
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: API key from the Omnifence dashboard

````