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

# List webhook deliveries

> Recent delivery records for one webhook — the status lifecycle view for debugging. Cross-tenant access returns 404, never 403.



## OpenAPI

````yaml /openapi.json get /webhooks/{webhook_id}/deliveries
openapi: 3.1.0
info:
  title: GetDialed Flows API
  version: 0.1.0
servers:
  - url: https://api.getdialed.ai/flows
    description: Production
  - url: http://localhost:8000
    description: Local development
security: []
paths:
  /webhooks/{webhook_id}/deliveries:
    get:
      tags:
        - webhooks
      summary: List webhook deliveries
      description: >-
        Recent delivery records for one webhook — the status lifecycle view for
        debugging. Cross-tenant access returns 404, never 403.
      operationId: list_webhook_deliveries_webhooks__webhook_id__deliveries_get
      parameters:
        - name: webhook_id
          in: path
          required: true
          schema:
            type: string
            title: Webhook Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/WebhookDeliveryListResponse'
        '401':
          description: Missing or invalid authentication
          content:
            application/json:
              example:
                detail: Authentication required
        '404':
          description: Not found — also returned on cross-tenant access (never 403)
          content:
            application/json:
              example:
                detail: Webhook not found
        '422':
          description: Validation error (see body for field details)
          content:
            application/json:
              example:
                detail: Validation error
      security:
        - APIKeyHeader: []
        - HTTPBearer: []
components:
  schemas:
    WebhookDeliveryListResponse:
      properties:
        items:
          items:
            $ref: '#/components/schemas/WebhookDeliveryResponse'
          type: array
          title: Items
        next_cursor:
          anyOf:
            - type: string
            - type: 'null'
          title: Next Cursor
      type: object
      required:
        - items
      title: WebhookDeliveryListResponse
      description: GET /webhooks/{id}/deliveries envelope (D-12).
    WebhookDeliveryResponse:
      properties:
        id:
          type: string
          title: Id
        webhook_id:
          type: string
          title: Webhook Id
        delivery_id:
          type: string
          title: Delivery Id
        status:
          type: string
          title: Status
        job_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Job Id
        error:
          anyOf:
            - type: string
            - type: 'null'
          title: Error
        created_at:
          type: string
          format: date-time
          title: Created At
      type: object
      required:
        - id
        - webhook_id
        - delivery_id
        - status
        - job_id
        - error
        - created_at
      title: WebhookDeliveryResponse
      description: >-
        One delivery record for the admin GET /webhooks/{id}/deliveries view
        (D-12).
  securitySchemes:
    APIKeyHeader:
      type: apiKey
      in: header
      name: X-API-Key
    HTTPBearer:
      type: http
      scheme: bearer
      bearerFormat: JWT

````