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

# Recent webhook events for the org (testing/observability)

> Org-scoped, read-only view of recently received webhook events.

Reads the Redis audit log written by ``WebhookService.ingest`` and
returns only events that resolve to one of the caller-org's connections
(by ``vendor_connection_id`` or Slack ``team_id``), annotated with the
resolved nickname. Forward events (Slack ``app_mention`` etc.) are
audit-only in v1 — this surface confirms inbound events arrive and route
to the right connection; it does not act on them. (The cross-org
``_internal/webhook-events`` endpoint is ``require_internal`` and can't
back a normal-API-key dashboard, hence this org-scoped read.)



## OpenAPI

````yaml /api-reference/openapi.json get /v1/integrations/webhook-events
openapi: 3.1.0
info:
  title: Feather API
  description: >-
    Unified customer experience platform API. Manages identity, conversations,
    memory, agents, procedures, policies, model routing, knowledge bases,
    integrations, and runtime execution.
  version: 1.21.0
servers:
  - url: https://api-sandbox.featherhq.com
    description: Sandbox
  - url: http://localhost:8000
    description: Local dev
security: []
paths:
  /v1/integrations/webhook-events:
    get:
      tags:
        - integrations
      summary: Recent webhook events for the org (testing/observability)
      description: |-
        Org-scoped, read-only view of recently received webhook events.

        Reads the Redis audit log written by ``WebhookService.ingest`` and
        returns only events that resolve to one of the caller-org's connections
        (by ``vendor_connection_id`` or Slack ``team_id``), annotated with the
        resolved nickname. Forward events (Slack ``app_mention`` etc.) are
        audit-only in v1 — this surface confirms inbound events arrive and route
        to the right connection; it does not act on them. (The cross-org
        ``_internal/webhook-events`` endpoint is ``require_internal`` and can't
        back a normal-API-key dashboard, hence this org-scoped read.)
      operationId: listWebhookEvents
      parameters:
        - name: vendor
          in: query
          required: false
          schema:
            type: string
            description: Vendor key, e.g. 'nango'
            default: nango
            title: Vendor
          description: Vendor key, e.g. 'nango'
        - name: limit
          in: query
          required: false
          schema:
            type: integer
            maximum: 200
            minimum: 1
            default: 50
            title: Limit
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/WebhookEventResponse'
                title: Response Listwebhookevents
        '400':
          description: Bad request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '401':
          description: Authentication required
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - APIKeyHeader: []
components:
  schemas:
    WebhookEventResponse:
      properties:
        event_id:
          type: string
          title: Event Id
        event_kind:
          type: string
          title: Event Kind
        event_type:
          type: string
          title: Event Type
        received_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Received At
        vendor:
          type: string
          title: Vendor
        integration_key:
          anyOf:
            - type: string
            - type: 'null'
          title: Integration Key
        vendor_connection_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Vendor Connection Id
        connection_id:
          anyOf:
            - type: string
              format: uuid
            - type: 'null'
          title: Connection Id
        nickname:
          anyOf:
            - type: string
            - type: 'null'
          title: Nickname
        nickname_slug:
          anyOf:
            - type: string
            - type: 'null'
          title: Nickname Slug
        payload:
          additionalProperties: true
          type: object
          title: Payload
      type: object
      required:
        - event_id
        - event_kind
        - event_type
        - vendor
      title: WebhookEventResponse
      description: |-
        One received webhook event for the org-scoped viewer (Step 13).

        Read-only projection of a Redis audit-log entry written by
        ``WebhookService.ingest``, annotated with the resolved connection's
        local id + nickname when the event maps to one of the caller-org's
        connections. Forward events (e.g. Slack ``app_mention``) are
        audit-only in v1 — this is a testing/observability surface, not a
        runtime trigger.
    ErrorResponse:
      properties:
        error:
          type: string
          title: Error
        message:
          type: string
          title: Message
      type: object
      required:
        - error
        - message
      title: ErrorResponse
      description: Standard error response returned by all API error handlers.
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    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
  securitySchemes:
    APIKeyHeader:
      type: apiKey
      in: header
      name: x-api-key

````