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

# List Deliveries

> Newest-first delivery log for a registration. Optional `status`
filter accepts {pending, delivered, dead}; anything else returns
an empty list (no error — keeps the surface forgiving).

Tenant scope enforced by `WebhookRegistry.get` returning None
when the registration belongs to a different merchant.



## OpenAPI

````yaml /api-reference/openapi.json get /api/dashboard/webhooks/{registration_id}/deliveries
openapi: 3.1.0
info:
  title: Agentic Commerce API
  description: |2-

        Agentic Commerce API - E-commerce Backend

        ## APIs

        ### Dashboard API (`/api/dashboard`)
        Authenticated endpoints for merchant management:
        - Products, Variants, Options
        - Inventory management
        - Orders and fulfillment
        - Customers
        - Collections

        ### Storefront API (`/api/storefront`)
        Public endpoints for client websites:
        - Product catalog
        - Collections
        - Cart management
        - Checkout

        ### Sync API (`/api/sync`)
        Integration endpoints for zunkiree-search:
        - Product sync
        - Availability checks
        - Order creation from AI widget
        
  version: 1.0.0
servers: []
security: []
paths:
  /api/dashboard/webhooks/{registration_id}/deliveries:
    get:
      tags:
        - Dashboard
        - Webhooks
      summary: List Deliveries
      description: |-
        Newest-first delivery log for a registration. Optional `status`
        filter accepts {pending, delivered, dead}; anything else returns
        an empty list (no error — keeps the surface forgiving).

        Tenant scope enforced by `WebhookRegistry.get` returning None
        when the registration belongs to a different merchant.
      operationId: list_deliveries_api_dashboard_webhooks__registration_id__deliveries_get
      parameters:
        - name: registration_id
          in: path
          required: true
          schema:
            type: string
            format: uuid
            title: Registration Id
        - name: status
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: Status
        - name: limit
          in: query
          required: false
          schema:
            type: integer
            maximum: 500
            minimum: 1
            default: 100
            title: Limit
        - name: authorization
          in: header
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: Authorization
        - name: X-API-Key
          in: header
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: X-Api-Key
        - name: X-Stella-Merchant-Id
          in: header
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: X-Stella-Merchant-Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/WebhookDeliveryResponse'
                title: >-
                  Response List Deliveries Api Dashboard Webhooks  Registration
                  Id  Deliveries Get
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    WebhookDeliveryResponse:
      properties:
        id:
          type: string
          format: uuid
          title: Id
        event_id:
          type: string
          title: Event Id
        registration_id:
          type: string
          format: uuid
          title: Registration Id
        status:
          type: string
          title: Status
        attempts:
          type: integer
          title: Attempts
        next_attempt_at:
          type: string
          format: date-time
          title: Next Attempt At
        last_attempt_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Last Attempt At
        last_status_code:
          anyOf:
            - type: integer
            - type: 'null'
          title: Last Status Code
        last_error:
          anyOf:
            - type: string
            - type: 'null'
          title: Last Error
        last_response_body:
          anyOf:
            - type: string
            - type: 'null'
          title: Last Response Body
        created_at:
          type: string
          format: date-time
          title: Created At
        delivered_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Delivered At
      type: object
      required:
        - id
        - event_id
        - registration_id
        - status
        - attempts
        - next_attempt_at
        - created_at
      title: WebhookDeliveryResponse
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError

````