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

# Delete a Webhook

> Remove a webhook subscription so you stop receiving events for that URL. Use the delete endpoint with your webhook ID.

### Request Parameters

[](https://docs.dojah.io/docs/subscribe-to-services#request)

```http [DELETE] theme={null}
{{baseUrl}}api/v1/webhook/delete
```

### Header

[](https://docs.dojah.io/docs/subscribe-to-services#header)

| Header        | Type   | Description                                                                                         |
| ------------- | ------ | --------------------------------------------------------------------------------------------------- |
| AppId         | string | Create an app to get your app ID on dashboard [here](https://app.dojah.io/developers/configuration) |
| Authorization | string | Private/secret key. Use `<key>` not `Bearer <key>`                                                  |

### Body Parameters

[](https://docs.dojah.io/docs/subscribe-to-services#body)

| Parameter | Type   | Description                                         | Required |
| --------- | ------ | --------------------------------------------------- | -------- |
| service   | string | Type of services e.g `sms`, `kyc_widget`, `address` | Yes      |

###

Response Sample

[](https://docs.dojah.io/docs/subscribe-to-services#response-sample)

```json Response theme={null}
{
  "entity": "webhook deleted successfully"
}
```

### Response Fields

| Field  | Type   | Description                                                          |
| ------ | ------ | -------------------------------------------------------------------- |
| entity | string | Confirmation message indicating the webhook was deleted successfully |
