Skip to main content
GET
/
webhooks
List webhook subscriptions
curl --request GET \
  --url https://borough.qwady.com/v1/webhooks \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "<string>",
      "url": "<string>",
      "events": [
        "<string>"
      ],
      "filters": {},
      "secret": "<string>",
      "isActive": true,
      "createdAt": "2023-11-07T05:31:56Z"
    }
  ]
}

Authorizations

Authorization
string
header
required

Polar.sh license key. Format: BOROUGH_<uuid>

Response

200 - application/json

List of webhook subscriptions

data
object[]