Skip to main content
GET
/
webhooks
List all webhooks
curl --request GET \
  --url http://localhost/public/v1/webhooks
{
  "ok": true,
  "webhooks": [
    {
      "id": "<string>",
      "url": "<string>",
      "events": "<string>",
      "is_enabled": "<string>",
      "secret": "<string>",
      "source": "<string>",
      "locked": "<string>",
      "created_at": "<string>",
      "updated_at": "<string>"
    }
  ],
  "meta": {
    "current_page": "<string>",
    "per_page": 123,
    "total": "<string>"
  }
}

Query Parameters

page
integer

Optional. Page number for pagination (default: 1).

Required range: x >= 1
per_page
integer

Optional. Number of items per page (default: 15, max: 100).

Required range: 1 <= x <= 100

Response

ok
boolean
required
webhooks
TeamWebhookResource · object[]
required
meta
object
required