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

# List delivery attempts for a webhook endpoint

> Deprecated: use GET /v2/webhooks/:id/deliveries for opaque cursor pagination.



## OpenAPI

````yaml /openapi.json get /v1/webhooks/{id}/deliveries
openapi: 3.0.0
info:
  contact: {}
  description: >-
    Comprehensive payment platform API supporting fiat and crypto payments,
    currency conversion, and compliance management
  title: Zuba Payment Platform API
  version: '1.0'
servers: []
security: []
tags:
  - description: Manage M2M API keys and credentials
    name: API Keys
  - description: Internal ledger accounts and transactions
    name: Ledger
  - description: Handle incoming payments and deposits
    name: Pay-ins
  - description: Manage payouts, beneficiaries, and SEPA transfers
    name: Payouts
  - description: Manage outbound webhook endpoints and deliveries
    name: Webhooks
paths:
  /v1/webhooks/{id}/deliveries:
    get:
      tags:
        - Webhooks
      summary: List delivery attempts for a webhook endpoint
      description: >-
        Deprecated: use GET /v2/webhooks/:id/deliveries for opaque cursor
        pagination.
      operationId: WebhookController_listDeliveries
      parameters:
        - description: Webhook endpoint ID
          in: path
          name: id
          required: true
          schema:
            example: 123e4567-e89b-12d3-a456-426614174000
            format: uuid
            type: string
        - description: Cursor for pagination (ISO timestamp)
          in: query
          name: cursor
          required: false
          schema:
            type: string
        - description: Number of results per page (default 20, max 100)
          in: query
          name: limit
          required: false
          schema:
            type: number
        - description: Filter by delivery status
          in: query
          name: status
          required: false
          schema:
            enum:
              - pending
              - delivered
              - failed
            type: string
        - description: Filter deliveries created at or after this ISO timestamp
          in: query
          name: dateFrom
          required: false
          schema:
            type: string
        - description: Filter deliveries created at or before this ISO timestamp
          in: query
          name: dateTo
          required: false
          schema:
            type: string
        - description: Search event ID, event type, response body, or HTTP status code
          in: query
          name: search
          required: false
          schema:
            type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/WebhookDeliveryListResponseDto'
          description: Paginated list of deliveries
        '401':
          description: Unauthorized
        '404':
          description: Endpoint not found
      deprecated: true
      security:
        - bearer: []
components:
  schemas:
    WebhookDeliveryListResponseDto:
      properties:
        deliveries:
          description: List of delivery records
          items:
            $ref: '#/components/schemas/WebhookDeliveryResponseDto'
          type: array
        hasMore:
          description: Whether more results exist
          type: boolean
        nextCursor:
          description: Cursor for next page
          type: string
      required:
        - deliveries
        - hasMore
      type: object
    WebhookDeliveryResponseDto:
      properties:
        attemptNumber:
          description: Attempt number
          type: number
        createdAt:
          description: Creation timestamp
          type: string
        eventId:
          description: Event ID
          example: evt_abc123
          type: string
        eventType:
          description: Event type
          example: payout.paid
          type: string
        httpStatusCode:
          description: HTTP status code from endpoint
          type: number
        id:
          description: Delivery ID
          type: string
        responseBody:
          description: Response body from endpoint (truncated to 1KB)
          type: string
        status:
          description: Delivery status
          enum:
            - pending
            - delivered
            - failed
          type: string
      required:
        - id
        - eventId
        - eventType
        - attemptNumber
        - status
        - createdAt
      type: object
  securitySchemes:
    bearer:
      bearerFormat: JWT
      description: Enter Auth0 JWT token
      scheme: bearer
      type: http

````