# DELETE Delete a webhook

Remove a webhook subscription.

- Source URL: https://www.signcustomiser.com/help/api/delete-delete-a-webhook/
- Markdown URL: https://www.signcustomiser.com/help/api/delete-delete-a-webhook.md
- Group: Webhooks
- Method: DELETE
- Path: /api/v2/webhooks/{webhook_id}
- Auth: Bearer token

## Path parameters

- webhook_id (string, required): The ID of the webhook. Example: 1

## cURL example

```bash
curl https://web.signcustomiser.com/api/v2/webhooks/1 \
  --request DELETE \
  --header 'Accept: application/json' \
  --header 'Authorization: Bearer YOUR_API_TOKEN'
```

## Response examples

### 200 DELETE 200 example 1

```json
{
  "success": true
}
```
