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

# Unbind a topic's webhook verifier

> Remove a topic's verifier binding, reopening its public ingress door; a missing
binding is a loud 404.



## OpenAPI

````yaml /openapi.json delete /api/hooks/topics/{topic}/verifier
openapi: 3.1.0
info:
  description: The operator HTTP surface served under /api/*.
  title: tai42-skeleton API
  version: 0.1.1
servers: []
security: []
paths:
  /api/hooks/topics/{topic}/verifier:
    delete:
      tags:
        - hooks
      summary: Unbind a topic's webhook verifier
      description: >-
        Remove a topic's verifier binding, reopening its public ingress door; a
        missing

        binding is a loud 404.
      operationId: delete_api_hooks_topics_topic_verifier
      parameters:
        - in: path
          name: topic
          required: true
          schema:
            type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                properties:
                  data: {}
                required:
                  - data
                type: object
          description: Success.
        '401':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
          description: Missing or invalid api key.
        '404':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
          description: Resource not found.
      security:
        - ApiKeyAuth: []
components:
  schemas:
    Error:
      properties:
        error:
          type: string
      required:
        - error
      type: object
  securitySchemes:
    ApiKeyAuth:
      in: header
      name: x-api-key
      type: apiKey

````