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

# Delete a webhook endpoint

> Remove a registered endpoint. It stops receiving events immediately and no longer appears in the list. The endpoint URL becomes available to register again.



## OpenAPI

````yaml /partner-api/openapi.json delete /webhook-config/{id}
openapi: 3.0.3
info:
  title: TruEnroll Partner API
  version: 1.0.0
  description: >-
    Submit academic documents and retrieve structured extraction, forensics, and
    translation results.
servers:
  - url: https://eval-api.trential.dev/partner/v1
    description: Sandbox
  - url: https://api.truenroll.com/partner/v1
    description: Production
security:
  - apiKey: []
tags:
  - name: Cases
    description: Create and manage processing cases.
  - name: Results
    description: Fetch extraction, forensics, and translation results.
  - name: Webhooks
    description: Register endpoints that receive case events.
paths:
  /webhook-config/{id}:
    delete:
      tags:
        - Webhooks
      summary: Delete a webhook endpoint
      description: >-
        Remove a registered endpoint. It stops receiving events immediately and
        no longer appears in the list. The endpoint URL becomes available to
        register again.
      operationId: deleteWebhookConfig
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
          description: Webhook config ID.
      responses:
        '204':
          description: Webhook endpoint deleted.
        '401':
          description: Missing or invalid API key.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '404':
          description: Webhook config not found.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
components:
  schemas:
    ErrorResponse:
      type: object
      properties:
        statusCode:
          type: integer
        message:
          type: string
      required:
        - statusCode
        - message
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: x-api-key
      description: 'Partner API key. Also accepted as `Authorization: Bearer <key>`.'

````