Skip to main content
GET
/
api
/
v2
/
admin
/
webhooks
/
{tenantId}
List webhooks
curl --request GET \
  --url https://faisalshop.mvp-apps.ae/api/v2/admin/webhooks/{tenantId} \
  --header 'Authorization: Bearer <token>'

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

curl -X GET \
  https://faisalshop.mvp-apps.ae/api/v2/admin/webhooks/123 \
  -H 'Authorization: Bearer YOUR_TOKEN'
const response = await axios.get(
  `/api/v2/admin/webhooks/${tenantId}`,
  {
    headers: {
      Authorization: `Bearer ${token}`
    }
  }
);

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

tenantId
integer
required

Tenant ID

Response

200

List of webhooks