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

# Unsubscribe a webhook

> Remove one webhook subscription from this Presenton instance.

[Read the async and webhooks guide](/user-guide/api-and-automation/async-and-webhooks).



## OpenAPI

````yaml /archive/v0.9.0-beta/openapi/self-hosted.json delete /api/v1/webhook/unsubscribe
openapi: 3.1.0
info:
  title: Presenton Self-hosted API
  version: v0.9.0-beta
  description: Supported public API served by a self-hosted Presenton deployment.
servers:
  - url: http://localhost:5001
    description: Local self-hosted instance
security: []
tags:
  - name: Presentations
    description: Generate and manage presentations.
  - name: Files and media
    description: Upload source files and images.
  - name: Templates and design
    description: Select reusable presentation designs.
  - name: Async and webhooks
    description: Monitor background work and receive events.
paths:
  /api/v1/webhook/unsubscribe:
    delete:
      tags:
        - Webhook
      summary: Unsubscribe a webhook
      description: >-
        Remove one webhook subscription from this Presenton instance.


        [Read the async and webhooks
        guide](/user-guide/api-and-automation/async-and-webhooks).
      operationId: unsubscribe_to_webhook_api_v1_webhook_unsubscribe_delete
      requestBody:
        content:
          application/json:
            schema:
              $ref: >-
                #/components/schemas/Body_unsubscribe_to_webhook_api_v1_webhook_unsubscribe_delete
        required: true
      responses:
        '204':
          description: Successful Response
        '401':
          $ref: '#/components/responses/Unauthorized'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
        '500':
          $ref: '#/components/responses/ServerError'
      security:
        - BasicAuth: []
      externalDocs:
        description: Read the async and webhooks guide
        url: /user-guide/api-and-automation/async-and-webhooks
components:
  schemas:
    Body_unsubscribe_to_webhook_api_v1_webhook_unsubscribe_delete:
      properties:
        id:
          type: string
          title: Id
          description: The ID of the webhook subscription to unsubscribe from
      type: object
      required:
        - id
      title: Body_unsubscribe_to_webhook_api_v1_webhook_unsubscribe_delete
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  responses:
    Unauthorized:
      description: Authentication is missing or invalid.
    ServerError:
      description: Presenton or one of its configured dependencies failed.
  securitySchemes:
    BasicAuth:
      type: http
      scheme: basic

````