# Delete webhook subscription

**Documentation:** /reference/api-reference/webhooks/deleteWebhookSubscriptionsById

Permanently deletes a webhook subscription. This action cannot be undone.

---

## DELETE `/api/v3/webhook_subscriptions/{id}`

**Endpoint:** `https://backend.composio.dev/api/v3/webhook_subscriptions/{id}`

**Summary:** Delete webhook subscription

Permanently deletes a webhook subscription. This action cannot be undone.

### Authentication

**ApiKeyAuth** - API Key in `header` header `x-api-key` OR **UserApiKeyAuth** - API Key in `header` header `x-user-api-key`

### Path Parameters

- `id` (string (webhookSubscriptionId)) *(required)*: Webhook subscription ID

### Responses

#### 200 - Webhook subscription deleted

**Response Schema:**

- `success` (boolean) *(required)*

**Example Response:**

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

#### 401 - Unauthorized

**Response Schema:**

- `error` (object) *(required)*
  - `message` (string) *(required)*
  - `code` (number) *(required)*
  - `slug` (string) *(required)*
  - `status` (number) *(required)*
  - `request_id` (string)
  - `suggested_fix` (string)
  - `errors` (array<string>)

#### 404 - Subscription not found

**Response Schema:**

- `error` (object) *(required)*
  - `message` (string) *(required)*
  - `code` (number) *(required)*
  - `slug` (string) *(required)*
  - `status` (number) *(required)*
  - `request_id` (string)
  - `suggested_fix` (string)
  - `errors` (array<string>)

#### 500 - Internal server error

**Response Schema:**

- `error` (object) *(required)*
  - `message` (string) *(required)*
  - `code` (number) *(required)*
  - `slug` (string) *(required)*
  - `status` (number) *(required)*
  - `request_id` (string)
  - `suggested_fix` (string)
  - `errors` (array<string>)

### Example cURL Request

```bash
curl -X DELETE "https://backend.composio.dev/api/v3/webhook_subscriptions/string" \
  -H "x-api-key: YOUR_API_KEY"
```