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

# List Org Webhook Events

> List delivery events across all webhooks for the organization.



## OpenAPI

````yaml /api-reference/openapi.json get /api/v1/webhooks/subscriptions/events
openapi: 3.1.0
info:
  title: wazzapi Public API
  description: >-
    Public API surface for external API-key clients. Only stable /api/v1
    endpoints are included.


    ## Webhook deliveries

    This reference also includes the webhook requests Wazzapi sends to your
    endpoint for incoming messages, message status updates, and device status
    changes. See the `Incoming webhooks` section in the sidebar for headers,
    payload fields, and concrete examples.
  version: 1.0.0
servers: []
security: []
tags:
  - name: Incoming webhooks
    description: >-
      POST deliveries that Wazzapi sends to your webhook endpoint after you
      subscribe to supported events. Verify the signature against the raw body
      and return a 2xx response quickly.
paths:
  /api/v1/webhooks/subscriptions/events:
    get:
      tags:
        - webhooks
      summary: List Org Webhook Events
      description: List delivery events across all webhooks for the organization.
      operationId: list_org_webhook_events_api_v1_webhooks_subscriptions_events_get
      parameters:
        - name: limit
          in: query
          required: false
          schema:
            type: integer
            maximum: 100
            minimum: 1
            default: 25
            title: Limit
        - name: offset
          in: query
          required: false
          schema:
            type: integer
            minimum: 0
            default: 0
            title: Offset
        - name: event_type
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: Event Type
        - name: status
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: Status
        - name: Authorization
          in: header
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: Authorization
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/OrgWebhookEventListResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    OrgWebhookEventListResponse:
      properties:
        events:
          items:
            $ref: '#/components/schemas/OrgWebhookEventListItem'
          type: array
          title: Events
        total:
          type: integer
          title: Total
      type: object
      required:
        - events
        - total
      title: OrgWebhookEventListResponse
      description: Response for org-wide webhook event listing.
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    OrgWebhookEventListItem:
      properties:
        id:
          type: string
          format: uuid
          title: Id
        webhook_id:
          type: string
          format: uuid
          title: Webhook Id
        webhook_url:
          type: string
          title: Webhook Url
        event_type:
          type: string
          title: Event Type
        status:
          type: string
          title: Status
        retry_count:
          type: integer
          title: Retry Count
        response_code:
          anyOf:
            - type: integer
            - type: 'null'
          title: Response Code
        error_message:
          anyOf:
            - type: string
            - type: 'null'
          title: Error Message
        created_at:
          type: string
          format: date-time
          title: Created At
        delivered_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Delivered At
      type: object
      required:
        - id
        - webhook_id
        - webhook_url
        - event_type
        - status
        - retry_count
        - created_at
      title: OrgWebhookEventListItem
      description: Event item for org-wide listing — includes webhook context.
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError

````