# Eliminar Webhook

En algunas situaciones, es posible que necesites eliminar un webhook, como cuando desactivas integraciones antiguas o reconfiguras los puntos finales. Para hacerlo de manera sencilla, puedes eliminar un webhook directamente desde el panel de control siguiendo estos pasos:

1. Dirígete a **Ajustes  > Integraciones > API ZapSign > Webhooks**.
2. Busca el webhook que deseas eliminar.
3. Elimina la URL asociada a los eventos de esa integración.

<figure><img src="https://github.com/AmandaAmani/documenta-ocurso/blob/main/deletando%20webhook%20usa.gif?raw=true" alt=" GIF demonstrating the process of deleting a webhook in the ZapSign control panel, showing navigation steps from Settings to Integrations, selecting ZapSign API, and removing the webhook URL from events."><figcaption><p>Deleting a Webhook</p></figcaption></figure>

### **Eliminar un Webhook Usando la API**

Si prefieres usar la API para eliminar el webhook, puedes hacerlo con el siguiente endpoint:

#### Delete a webhook

<mark style="color:red;">`DELETE`</mark> `https://api.zapsign.com.br/api/v1/user/company/webhook/delete/`

#### Headers

<table><thead><tr><th width="175">Nombre</th><th width="103">Tipo</th><th>Descripción</th></tr></thead><tbody><tr><td>Authorization<mark style="color:red;">*</mark></td><td>string</td><td>API token prefijo con la palabra "Bearer". Ex: Bearer c7f35c84-7893-4087-b4fb-d1f06c23</td></tr></tbody></table>

#### Request Body

```
{
    "id": "{{webhook_id}}"
}

```

<table><thead><tr><th width="160">Nombre</th><th width="141">Tipo</th><th>Descripción</th></tr></thead><tbody><tr><td>id</td><td>string</td><td>El identificar del webhook que quieres eliminar.</td></tr></tbody></table>

{% tabs %}
{% tab title="200: OK " %}
Webhook deleted successfully
{% endtab %}
{% endtabs %}

### Ejemplo de solicitud en postman

{% embed url="<https://www.postman.com/zapsign/workspace/zapsign-workspace/request/27495556-3c2b30d8-1ee5-4afa-b37a-8693355812c7?ctx=documentation>" %}


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.zapsign.com.br/espanol/webhooks/eliminar-webhook.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
