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

# Eliminar webhook

> Elimina un webhook registrado. Dejarás de recibir eventos en ese endpoint.

## Path Parameters

<ParamField path="id" type="string" required>
  ID del webhook a eliminar (ej. `wh_abc123`).
</ParamField>

<ResponseExample>
  ```json 204 theme={null}
  ```
</ResponseExample>

<Note>
  Los eventos pendientes de entrega para un webhook eliminado se descartarán. Esta acción es irreversible.
</Note>


## OpenAPI

````yaml openapi.yml DELETE /webhooks/{id}
openapi: 3.1.0
info:
  title: LINA Healthcare Platform API
  version: 1.0.0
  description: |
    API de integración para la plataforma LINA Healthcare.
    Todas las rutas requieren un token JWT obtenido intercambiando una API Key.
servers:
  - url: https://api.linahealthcareplatform.com/api/v1
    description: Production
security:
  - bearerAuth: []
paths:
  /webhooks/{id}:
    delete:
      tags:
        - Webhooks
      summary: Eliminar webhook
      operationId: deleteWebhook
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
      responses:
        '204':
          description: Eliminado
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: Token JWT obtenido via POST /auth/token

````