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

# List webhook deliveries



## OpenAPI

````yaml /api-reference/openapi.json get /webhooks/deliveries
openapi: 3.0.3
info:
  title: FileFeed API
  version: '2026-05-25'
  description: >-
    Official FileFeed REST API for connections, pipelines, schemas, pipeline
    runs, webhooks, outbound uploads, documents, files, and notifications.
    Date-based API versioning is controlled by the `FileFeed-Version` request
    header (default `2024-09-01`; latest `2026-05-25`); this document describes
    the `2026-05-25` shape.
servers:
  - url: https://api.sftpsync.io
security:
  - ApiKeyAuth: []
tags:
  - name: Connections
  - name: Pipelines
  - name: Schemas
  - name: Pipeline Runs
  - name: Webhooks
  - name: Outbound Uploads
  - name: Documents
  - name: Files
  - name: Notifications
  - name: Clients (deprecated)
paths:
  /webhooks/deliveries:
    get:
      tags:
        - Webhooks
      summary: List webhook deliveries
      operationId: listWebhookDeliveries
      parameters:
        - name: webhookId
          in: query
          schema:
            type: string
        - name: page
          in: query
          schema:
            type: integer
        - name: limit
          in: query
          schema:
            type: integer
        - name: eventType
          in: query
          schema:
            type: string
        - name: success
          in: query
          schema:
            type: boolean
      responses:
        '200':
          description: Paginated deliveries
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PaginatedWebhookDeliveries'
              example:
                data:
                  - id: wd_1
                    success: true
                    statusCode: 200
                pagination:
                  page: 1
                  limit: 50
                  total: 1
                  totalPages: 1
components:
  schemas:
    PaginatedWebhookDeliveries:
      type: object
      properties:
        data:
          type: array
          items:
            $ref: '#/components/schemas/WebhookDelivery'
        pagination:
          $ref: '#/components/schemas/Pagination'
      required:
        - data
        - pagination
    WebhookDelivery:
      type: object
      properties:
        id:
          type: string
        webhookId:
          type: string
        eventType:
          type: string
        success:
          type: boolean
        statusCode:
          type: integer
        errorMessage:
          type: string
        webhookName:
          type: string
          description: Display name of the webhook this delivery targeted, when available.
        webhookUrl:
          type: string
          format: uri
          description: >-
            Destination URL of the webhook this delivery targeted, when
            available.
        timestamp:
          type: string
          format: date-time
      required:
        - id
        - webhookId
        - eventType
        - success
        - statusCode
        - timestamp
    Pagination:
      type: object
      properties:
        page:
          type: integer
        limit:
          type: integer
        total:
          type: integer
        totalPages:
          type: integer
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key

````