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

# Retry a delivery

> Re-sends the delivery with a fresh retry schedule. A failed or pending delivery is reset in place; a successful one is re-sent as a new delivery row so the history is kept. The endpoint must be active.



## OpenAPI

````yaml /api-reference/openapi.json post /v1/webhooks/deliveries/{id}/retry
openapi: 3.1.0
info:
  title: Chipper Platform API
  version: '2026-02-20'
  description: >-
    Payouts, collections, and FX across African rails — bank, mobile money, and
    stablecoins — through one API.
servers:
  - url: https://sandbox-api.platform.chipper.ai
    description: Sandbox (sk_test_ keys — simulated rails, no real money)
  - url: https://api.platform.chipper.ai
    description: Production (sk_live_ keys)
security:
  - bearerAuth: []
paths:
  /v1/webhooks/deliveries/{id}/retry:
    post:
      tags:
        - Webhooks
      summary: Retry a delivery
      description: >-
        Re-sends the delivery with a fresh retry schedule. A failed or pending
        delivery is reset in place; a successful one is re-sent as a new
        delivery row so the history is kept. The endpoint must be active.
      parameters:
        - schema:
            type: string
            description: Webhook delivery id.
            example: whd_x4n7q2vm8kp3r9zt5wbc
          required: true
          name: id
          in: path
      responses:
        '200':
          description: 'The delivery now queued (`status: pending`).'
          content:
            application/json:
              schema:
                type: object
                properties:
                  delivery:
                    $ref: '#/components/schemas/WebhookDelivery'
                required:
                  - delivery
        '401':
          description: Missing or invalid API key.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
              example:
                error: unauthorized
                message: Invalid API key
                requestId: req_q7vei435zifs51ia0lqr
        '404':
          description: No such resource in this organization.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
              example:
                error: not_found
                message: Webhook delivery not found
                requestId: req_q7vei435zifs51ia0lqr
      security:
        - bearerAuth: []
components:
  schemas:
    WebhookDelivery:
      type: object
      properties:
        id:
          type: string
          example: whd_x4n7q2vm8kp3r9zt5wbc
        eventId:
          type: string
          example: wev_p2r8m5xk9qz3v7nt4wbh
        eventType:
          type:
            - string
            - 'null'
          example: payout.completed
        resourceId:
          type:
            - string
            - 'null'
          example: pay_ghs_p95akjfs339uy9icpelj
        endpointId:
          type: string
          example: whe_k3m9x2pq7vn4t8wz1bcd
        status:
          type: string
          enum:
            - pending
            - success
            - failed
          description: >-
            `pending` while retries remain, `failed` once the schedule is
            exhausted.
        attempts:
          type: integer
          example: 3
        lastStatusCode:
          type:
            - integer
            - 'null'
          description: HTTP status of the last attempt; null if the connection failed.
          example: 500
        lastError:
          type:
            - string
            - 'null'
          description: >-
            First 500 chars of the last failed response body, or the network
            error.
          example: HTTP 500
        completedAt:
          type:
            - string
            - 'null'
          format: date-time
        createdAt:
          type: string
          format: date-time
          example: '2026-08-01T09:12:44.000Z'
      required:
        - id
        - eventId
        - eventType
        - resourceId
        - endpointId
        - status
        - attempts
        - lastStatusCode
        - lastError
        - completedAt
        - createdAt
    Error:
      type: object
      properties:
        error:
          type: string
          description: Stable machine-readable code.
        message:
          type: string
          description: Human-readable explanation.
        requestId:
          type: string
          description: Echoed in the x-request-id response header — quote it to support.
      required:
        - error
        - message
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: 'Your API key: `sk_test_…` (sandbox) or `sk_live_…` (production).'

````