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

# Delete a webhook

> Lastly, you can delete an existing webhook when you no longer need it.

# Step 7: delete a webhook

Lastly, you can delete an existing webhook when you no longer need it.

<CodeGroup>
  ```bash Sandbox theme={null}
  curl -i -X DELETE \
    'https://api-sandbox.equalsmoney.com/v2/webhooks/{webhookId}' \
    -H 'Authorization: ApiKey {apiKey}'
  ```

  ```bash Production theme={null}
  curl -i -X DELETE \
    'https://api.equalsmoney.com/v2/webhooks/{webhookId}' \
    -H 'Authorization: ApiKey {apiKey}'
  ```
</CodeGroup>

If your request is successful, you'll receive an empty `204` response. If you [list all webhooks](/pages/webhooks/tutorial/step3) again, you'll notice that the `count` has gone down by 1.
