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

# List deliveries for a webhook endpoint

> Returns the delivery history for a webhook endpoint. Useful for debugging failed deliveries.



## OpenAPI

````yaml openapi.json get /api/webhooks/{id}/deliveries
openapi: 3.0.0
info:
  title: Wappfy API
  description: >-
    WhatsApp API Platform — Manage instances, send messages, and build
    integrations.
  version: '1.0'
  contact: {}
servers:
  - url: https://api.wappfy.io
    description: Production
security: []
tags:
  - name: Instances
    description: Create, connect, and manage WhatsApp instances (WAHA or Cloud API)
  - name: Messages
    description: >-
      Send messages via WhatsApp (text, media, location, poll, contacts, and
      more)
  - name: Chats
    description: List chats, read messages, mark as seen, and manage typing indicators
  - name: Groups
    description: Create and manage WhatsApp groups, participants, and invite links
  - name: Contacts
    description: Look up contacts, check phone numbers, and fetch profile pictures
  - name: Labels
    description: Organize chats with WhatsApp Business labels
  - name: Channels
    description: Create and manage WhatsApp Channels (newsletters)
  - name: Status
    description: Publish text status/stories
  - name: Presence
    description: Set and get online/offline presence
  - name: Webhooks
    description: Configure webhook endpoints to receive real-time event notifications
  - name: Admin
    description: >-
      Platform administration — user management, statistics, and proxy
      monitoring (admin only)
paths:
  /api/webhooks/{id}/deliveries:
    get:
      tags:
        - Webhooks
      summary: List deliveries for a webhook endpoint
      description: >-
        Returns the delivery history for a webhook endpoint. Useful for
        debugging failed deliveries.
      operationId: WebhooksController_getDeliveries
      parameters:
        - name: id
          required: true
          in: path
          description: Webhook endpoint UUID
          schema:
            format: uuid
            type: string
        - name: page
          required: false
          in: query
          description: 'Page number (default: 1)'
          schema:
            type: number
        - name: limit
          required: false
          in: query
          description: 'Items per page (default: 20)'
          schema:
            type: number
      responses:
        '200':
          description: List of webhook deliveries
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/WebhookDeliveryResponseDto'
        '401':
          description: Missing or invalid authentication token
        '403':
          description: Insufficient permissions
        '500':
          description: Internal server error
      security:
        - bearer: []
components:
  schemas:
    WebhookDeliveryResponseDto:
      type: object
      properties:
        id:
          type: string
          description: Delivery attempt UUID
        webhook_endpoint_id:
          type: string
          description: Parent webhook endpoint ID
        event:
          type: string
          example: message.received
          description: Event that triggered this delivery
        status_code:
          type: number
          example: 200
          description: HTTP status code from destination
        response_body:
          type: string
          description: Response body from destination
        attempt:
          type: number
          example: 1
          description: Attempt number (1 = first try)
        delivered_at:
          type: string
          description: Timestamp of delivery attempt
      required:
        - id
        - webhook_endpoint_id
        - event
        - status_code
        - attempt
        - delivered_at
  securitySchemes:
    bearer:
      scheme: bearer
      bearerFormat: JWT
      type: http

````