Retrieving webhooks subscriptions

Get webhooks subscriptions

This will provide list of webhooks subscriptions from the database.

get/webhooks-subscriptions

Headers

xWSO2Tenantstring required

This is used to specify the tenant domain, where the resource need to be retrieved from.

Response

An array of webhooks subscriptions

Example response

{
  "list": [
    {
      "tenantId": -1234,
      "tier": "Bronze",
      "applicationTier": "Unlimited",
      "apiTier": "Bronze",
      "subscriberName": "admin"
    }
  ],
  "pagination": {
    "limit": 1,
    "total": 10
  }
}

Changes