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

# Delete Webhook

> Delete a webhook

## Description

Delete a webhook. You won't receive notifications at that URL anymore.

## Parameters

<ParamField path="id" type="string" required>
  Unique webhook ID.
</ParamField>

## Response

<ResponseField name="id" type="string">
  ID of the deleted webhook.
</ResponseField>

## Examples

<CodeGroup>
  ```bash cURL theme={null}
  curl -X DELETE https://api.usesendly.app/v1/webhooks/webhook_123 \
    -H "Authorization: Bearer se_your_api_key"
  ```

  ```javascript SDK theme={null}
  const result = await client.webhooks.delete('webhook_123')

  console.log(`Webhook deleted: ${result.id}`)
  ```

  ```javascript SMTP theme={null}
  import { Sendly } from '@sendlyapp/sdk'

  const client = new Sendly()
  await client.webhooks.delete('webhook_123')
  ```
</CodeGroup>

## Notes

* ⚠️ Cannot be undone
* You'll stop receiving notifications immediately
* You can create a new webhook afterwards

***

Need help? Contact [support@usesendly.app](mailto:support@usesendly.app)
