> ## Documentation Index
> Fetch the complete documentation index at: https://docs.bbrands.io/llms.txt
> Use this file to discover all available pages before exploring further.

# List Webhook Events

> Paginated list of subscriber ↔ event links. Filter by `webhook|eq|<id>` to see one subscriber's set. Requires `webhook-event:find-all`.



## OpenAPI

````yaml GET /webhook/webhook-event
openapi: 3.0.1
info:
  title: Webhook API
  description: |
    Outbound webhook subscriptions, event catalogue, delivery ledger and
    operator actions of horizon-api. Every endpoint requires a bearer token
    whose user holds the corresponding `webhook:*`, `webhook-event:*`,
    `webhook-dispatch:*` or `event:*` permission (granted to the
    `administrator` role in the first release).

    List endpoints share the platform query contract: `filters`
    (`field|operator|value,...`), `order_by` (`field:asc|desc,...`), `page`,
    `page_size`, `fields` and `populate`.
  version: '2026-09-11'
servers:
  - description: Production
    url: https://api.bbrands.io/api/v3
  - description: Certification
    url: https://certification.api.bbrands.io/api/v3
  - description: Development
    url: https://development.api.bbrands.io/api/v3
security:
  - bearerAuth: []
tags:
  - name: Webhook
    description: Subscribers — callback URL, secret and scope.
  - name: Webhook Event
    description: Links between a subscriber and a catalogue event.
  - name: Webhook Dispatch
    description: Delivery ledger — one row per subscriber per event.
  - name: Event
    description: Catalogue rows synced from the generated catalogue.
paths:
  /webhook/webhook-event:
    get:
      tags:
        - Webhook Event
      summary: List webhook events
      description: >-
        Paginated list of subscriber ↔ event links. Filter by `webhook|eq|<id>`
        to see one subscriber's set. Requires `webhook-event:find-all`.
      operationId: webhookEventFindAll
      parameters:
        - $ref: '#/components/parameters/Fields'
        - $ref: '#/components/parameters/Filters'
        - $ref: '#/components/parameters/OrderBy'
        - $ref: '#/components/parameters/Page'
        - $ref: '#/components/parameters/PageSize'
        - $ref: '#/components/parameters/Populate'
      responses:
        '200':
          description: Webhook event records retrieved successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      $ref: '#/components/schemas/WebhookEvent'
                  message:
                    type: string
                  meta:
                    $ref: '#/components/schemas/Meta'
                  paging:
                    $ref: '#/components/schemas/Paging'
        '400':
          $ref: '#/components/responses/BadRequest'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '403':
          $ref: '#/components/responses/Forbidden'
        '429':
          $ref: '#/components/responses/TooManyRequests'
components:
  parameters:
    Fields:
      name: fields
      in: query
      description: Comma-separated list of columns to return.
      schema:
        type: string
    Filters:
      name: filters
      in: query
      description: >-
        `field|operator|value` conditions separated by commas. Operators: `eq`,
        `neq`, `like`, `ilike`, `in`, `is`, `cs`, `gt`, `gte`, `lt`, `lte`.
      schema:
        type: string
      example: status|in|error,exhausted
    OrderBy:
      name: order_by
      in: query
      description: '`field:asc|desc` pairs separated by commas.'
      schema:
        type: string
      example: created_at:desc
    Page:
      name: page
      in: query
      schema:
        type: integer
        minimum: 1
        default: 1
    PageSize:
      name: page_size
      in: query
      schema:
        type: integer
        minimum: 1
        default: 10
    Populate:
      name: populate
      in: query
      description: Whether to expand foreign keys into nested objects.
      schema:
        type: boolean
        default: true
  schemas:
    WebhookEvent:
      allOf:
        - type: object
          properties:
            document_id:
              type: string
              format: uuid
            event:
              type: string
              format: uuid
              description: Catalogue event (`event.document_id`).
            webhook:
              type: string
              format: uuid
        - $ref: '#/components/schemas/Tracking'
    Meta:
      type: object
      properties:
        correlation:
          type: string
          description: Request correlation id; quote it when reporting an issue.
        status:
          type: integer
        timestamp:
          type: string
          format: date-time
        version:
          type: string
          nullable: true
    Paging:
      type: object
      properties:
        page:
          type: integer
        page_size:
          type: integer
        total:
          type: integer
        total_pages:
          type: integer
    Tracking:
      type: object
      properties:
        created_at:
          type: string
          format: date-time
        deleted_at:
          type: string
          format: date-time
          nullable: true
        is_actived:
          type: boolean
        is_deleted:
          type: boolean
        updated_at:
          type: string
          format: date-time
    ErrorResponse:
      type: object
      properties:
        code:
          type: string
          description: Machine-readable error code.
        errors:
          type: array
          items: {}
        message:
          type: string
        meta:
          $ref: '#/components/schemas/Meta'
        status:
          type: integer
  responses:
    BadRequest:
      description: Validation error
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
    Unauthorized:
      description: Missing or invalid bearer token
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
    Forbidden:
      description: The user lacks the required permission
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
    TooManyRequests:
      description: Rate limit exceeded
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````