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

# List webhook delivery history



## OpenAPI

````yaml /api-reference/openapi.json get /api/v1/webhooks/{id}/deliveries
openapi: 3.0.0
info:
  title: EngageFabric API
  description: >-
    EngageFabric is a multi-tenant SaaS gamification framework. This API
    provides endpoints for managing players, tracking events, quests,
    adventures, leaderboards, lobbies, and real-time features.
  version: 1.0.0
  contact:
    name: EngageFabric Support
    url: https://engagefabric.com
    email: support@engagefabric.com
  license:
    name: Proprietary
    url: https://engagefabric.com/terms
servers:
  - url: https://api.engagefabric.com
    description: Production
  - url: http://localhost:3000
    description: Development
security: []
tags:
  - name: auth
    description: Authentication endpoints
  - name: tenants
    description: Tenant management
  - name: projects
    description: Project management
  - name: players
    description: Player management and game state
  - name: events
    description: Event ingestion and tracking
  - name: quests
    description: Quest management and progress
  - name: adventures
    description: Adventure/season management
  - name: leaderboards
    description: Leaderboard rankings
  - name: lobbies
    description: Multiplayer lobby management
  - name: chat
    description: Real-time chat
  - name: rules
    description: Rules engine configuration
paths:
  /api/v1/webhooks/{id}/deliveries:
    get:
      tags:
        - Webhooks
      summary: List webhook delivery history
      operationId: WebhooksController_listDeliveries
      parameters:
        - name: id
          required: true
          in: path
          description: Webhook ID
          schema:
            type: string
        - name: status
          required: false
          in: query
          description: Filter by delivery status
          schema:
            example: FAILED
            type: string
        - name: eventType
          required: false
          in: query
          description: Filter by event type
          schema:
            type: string
            example: player.level_up
        - name: page
          required: false
          in: query
          description: Page number (1-based)
          schema:
            type: number
            example: 1
        - name: limit
          required: false
          in: query
          description: Items per page
          schema:
            type: number
            example: 20
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/WebhookDeliveriesListResponse'
      security:
        - bearer: []
components:
  schemas:
    WebhookDeliveriesListResponse:
      type: object
      properties:
        deliveries:
          type: array
          items:
            $ref: '#/components/schemas/WebhookDeliveryResponse'
        total:
          type: number
          example: 100
        page:
          type: number
          example: 1
        limit:
          type: number
          example: 20
        totalPages:
          type: number
          example: 5
      required:
        - deliveries
        - total
        - page
        - limit
        - totalPages
    WebhookDeliveryResponse:
      type: object
      properties:
        id:
          type: string
          example: del_123abc
        webhookId:
          type: string
          example: wh_456def
        eventType:
          type: string
          example: player.level_up
        eventId:
          type: string
          example: evt_789xyz
        payload:
          type: object
          example:
            id: del_123abc
            event: player.level_up
            timestamp: '2024-01-15T10:30:00Z'
            projectId: proj_456def
            data:
              player:
                id: p1
                name: Player 1
              oldLevel: 5
              newLevel: 6
        requestUrl:
          type: string
          example: https://api.yourapp.com/webhooks/engagefabric
        requestMethod:
          type: string
          example: POST
        status:
          type: string
          enum:
            - PENDING
            - PROCESSING
            - SUCCESS
            - FAILED
            - RETRYING
            - CANCELLED
          example: SUCCESS
        responseCode:
          type: number
          example: 200
        responseBody:
          type: string
          example: '{"received": true}'
        responseTimeMs:
          type: number
          example: 125
        attempt:
          type: number
          example: 1
        maxAttempts:
          type: number
          example: 3
        nextRetryAt:
          type: string
          example: '2024-01-15T10:35:00Z'
        lastError:
          type: string
          example: Connection timeout
        createdAt:
          type: string
          example: '2024-01-15T10:30:00Z'
        sentAt:
          type: string
          example: '2024-01-15T10:30:01Z'
        completedAt:
          type: string
          example: '2024-01-15T10:30:01Z'
      required:
        - id
        - webhookId
        - eventType
        - payload
        - requestUrl
        - requestMethod
        - status
        - attempt
        - maxAttempts
        - createdAt

````