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

# Delete Webhook

## Overview

Unsubscribe from webhook events. This will stop sending notifications to your webhook URL.

## Authorization

* User must be authenticated with a valid Bearer token
* User must have ADMIN role in the tenant

## Important Notes

* Deleting a webhook is permanent
* In-flight deliveries may still be attempted
* Historical delivery records are preserved

## Example Usage

```bash theme={null}
curl -X DELETE \
  https://faisalshop.mvp-apps.ae/api/v2/admin/webhooks/123 \
  -H 'Authorization: Bearer YOUR_TOKEN'
```

```javascript theme={null}
await axios.delete(
  `/api/v2/admin/webhooks/${tenantId}`,
  {
    headers: {
      Authorization: `Bearer ${token}`
    }
  }
);
```


## OpenAPI

````yaml DELETE /api/v2/admin/webhooks/{tenantId}
openapi: 3.1.0
info:
  title: Urban Things API
  description: Multi-tenant e-commerce platform API
  version: 2.0.0
  contact:
    email: info@faisalkc.com
servers:
  - url: https://faisalshop.mvp-apps.ae
    description: Production server
  - url: http://localhost:3000
    description: Development server
security:
  - bearerAuth: []
paths:
  /api/v2/admin/webhooks/{tenantId}:
    delete:
      tags:
        - Webhooks
      summary: Delete webhook
      parameters:
        - $ref: '#/components/parameters/TenantIdPath'
      responses:
        '200':
          description: Webhook deleted
components:
  parameters:
    TenantIdPath:
      name: tenantId
      in: path
      required: true
      schema:
        type: integer
      description: Tenant ID
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````