> ## 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.

# Retry Delivery V1

> Manual retry. Resets the delivery to `pending` with
`next_attempt_at=NOW()` so the dispatcher picks it up on the next
tick. Cross-merchant scope is enforced by joining through the
registration.



## OpenAPI

````yaml /api-reference/openapi.json post /api/sync/v1/webhooks/deliveries/{delivery_id}/retry
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/sync/v1/webhooks/deliveries/{delivery_id}/retry:
    post:
      tags:
        - Sync v1
        - Sync v1 Webhooks
      summary: Retry Delivery V1
      description: |-
        Manual retry. Resets the delivery to `pending` with
        `next_attempt_at=NOW()` so the dispatcher picks it up on the next
        tick. Cross-merchant scope is enforced by joining through the
        registration.
      operationId: >-
        retry_delivery_v1_api_sync_v1_webhooks_deliveries__delivery_id__retry_post
      parameters:
        - name: delivery_id
          in: path
          required: true
          schema:
            type: string
            format: uuid
            title: Delivery Id
        - name: authorization
          in: header
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: Authorization
        - name: X-Stella-Site-Id
          in: header
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: X-Stella-Site-Id
        - name: X-Sync-Secret
          in: header
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: X-Sync-Secret
        - name: X-Site-ID
          in: header
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: X-Site-Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/WebhookDeliveryResponse'
        '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

````