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

# List Webhook Deliveries

> Every delivery we attempted, newest first. Use this to debug a receiver
without waiting for live traffic: it records the HTTP status we got back
and how many attempts a payload has taken.




## OpenAPI

````yaml GET /webhooks/deliveries
openapi: 3.1.0
info:
  title: Edpire API
  description: >
    Edpire is a headless assessment engine. This API lets you manage
    assessments,

    submit answers for grading, retrieve results, organise them into folders,
    and configure

    webhooks for real-time notifications.


    All responses use a consistent envelope: `{ data, error, meta }`.
  version: 1.0.0
  contact:
    name: Edpire Support
    url: https://edpire.com
  license:
    name: Proprietary
servers:
  - url: https://edpire.com/api/v1
    description: Production
security:
  - BearerAuth: []
tags:
  - name: Assessments
    description: Create, list, update, publish, and grade assessments
  - name: Submissions
    description: Retrieve submission details
  - name: Learners
    description: Query learner results
  - name: Webhooks
    description: Register and manage webhook endpoints
  - name: Embed
    description: Mint tokens and load assessments for browser-side rendering
  - name: Folders
    description: Nestable structure for filing assessments
  - name: Authoring
    description: Hand an author into the Edpire builder from your own admin
paths:
  /webhooks/deliveries:
    get:
      tags:
        - Webhooks
      summary: List webhook delivery attempts
      description: |
        Every delivery we attempted, newest first. Use this to debug a receiver
        without waiting for live traffic: it records the HTTP status we got back
        and how many attempts a payload has taken.
      operationId: listWebhookDeliveries
      parameters:
        - name: webhook_id
          in: query
          description: Restrict to a single registered endpoint.
          schema:
            type: string
            format: uuid
        - name: status
          in: query
          schema:
            type: string
            enum:
              - pending
              - delivered
              - failed
        - name: limit
          in: query
          schema:
            type: integer
            default: 50
            maximum: 100
        - name: offset
          in: query
          schema:
            type: integer
            default: 0
      responses:
        '200':
          description: Delivery attempts, with pagination in `meta`
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      $ref: '#/components/schemas/WebhookDelivery'
                  error:
                    type: 'null'
                  meta:
                    type: object
                    properties:
                      total:
                        type: integer
                      limit:
                        type: integer
                      offset:
                        type: integer
components:
  schemas:
    WebhookDelivery:
      type: object
      properties:
        id:
          type: string
          format: uuid
        webhook_id:
          type: string
          format: uuid
        webhook_url:
          type: string
          format: uri
        event_type:
          type: string
          description: >-
            The event delivered. `ping` is a manual test sent from the
            dashboard.
        status:
          type: string
          enum:
            - pending
            - delivered
            - failed
        response_status:
          type: integer
          nullable: true
          description: HTTP status your endpoint returned, or null if it was unreachable.
        attempts:
          type: integer
        created_at:
          type: string
          format: date-time
        last_attempted_at:
          type: string
          format: date-time
          nullable: true
        next_attempt_at:
          type: string
          format: date-time
          nullable: true
          description: When the next retry is due. Null once delivered or exhausted.
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      description: >
        API key starting with `edp_live_`. Pass via `Authorization: Bearer
        edp_live_xxx`.


        Scopes: `read:assessments`, `write:assessments`, `read:results`,
        `write:submissions`.

````