> ## 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.

# List Webhooks

## Overview

Retrieve all webhook subscriptions for a specific tenant. Webhooks allow you to receive real-time notifications about events in your tenant.

## Authorization

* User must be authenticated with a valid Bearer token
* User must be a member of the tenant

## Webhook Events

Common webhook events include:

* User registered
* Order created
* Product updated
* Team member added/removed

## Example Usage

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

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


## OpenAPI

````yaml GET /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}:
    get:
      tags:
        - Webhooks
      summary: List webhooks
      parameters:
        - $ref: '#/components/parameters/TenantIdPath'
      responses:
        '200':
          description: List of webhooks
components:
  parameters:
    TenantIdPath:
      name: tenantId
      in: path
      required: true
      schema:
        type: integer
      description: Tenant ID
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````