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

# Redeliver

> Sends a failed delivery again, with the same webhook-id.



## OpenAPI

````yaml openapi/en/cell.json POST /v1/webhooks/deliveries/{delivery_id}/redeliver
openapi: 3.1.0
info:
  title: Niadra data API
  version: '1'
  description: >-
    Writing, context, history, objects, identity, privacy and governance of one
    space. Every space has a stable address, with the space and the region in
    its name.
servers:
  - url: https://{space}.{region}.api.niadra.com
    variables:
      space:
        default: acme-prod
        description: The space, which comes in the source key.
      region:
        default: us-east-1
        description: The region of the space, which also comes in the key.
security: []
paths:
  /v1/webhooks/deliveries/{delivery_id}/redeliver:
    post:
      tags:
        - operate
      summary: Redeliver
      description: >-
        Sends a failed or dead delivery again, with the same `webhook-id`, so
        your consumer can recognize it as the same event.


        **Authentication.** Console person token with the `integration` role (or
        admin), or a source key with the `admin` scope.
      operationId: redeliver_v1_webhooks_deliveries__delivery_id__redeliver_post
      parameters:
        - in: path
          name: delivery_id
          required: true
          schema:
            format: uuid
            title: Delivery Id
            type: string
          example: 0192f8d0-7e31-7a4b-9c5d-3e4f5a6b7c8d
      responses:
        '202':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DeliveryView'
              example:
                delivery_id: 0192f8d0-7e31-7a4b-9c5d-3e4f5a6b7c8d
                endpoint_id: whe_crm
                event_type: trigger.fired
                status: pending
                attempts: 14
                last_status_code: 500
                last_error: HTTP 500 from the endpoint
                created_at: '2026-09-23T15:05:00Z'
                delivered_at: null
                next_attempt_at: '2026-09-24T09:00:05Z'
          description: The delivery is queued again.
        '422':
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/Problem'
          description: The request does not match the contract.
      security:
        - sourceKey: []
        - personToken: []
components:
  schemas:
    DeliveryView:
      additionalProperties: false
      properties:
        attempts:
          title: Attempts
          type: integer
        created_at:
          format: date-time
          title: Created At
          type: string
        delivered_at:
          anyOf:
            - format: date-time
              type: string
            - type: 'null'
          title: Delivered At
        delivery_id:
          title: Delivery Id
          type: string
        endpoint_id:
          title: Endpoint Id
          type: string
        event_type:
          title: Event Type
          type: string
        last_error:
          anyOf:
            - type: string
            - type: 'null'
          title: Last Error
        last_status_code:
          anyOf:
            - type: integer
            - type: 'null'
          title: Last Status Code
        next_attempt_at:
          anyOf:
            - format: date-time
              type: string
            - type: 'null'
          title: Next Attempt At
        status:
          title: Status
          type: string
      required:
        - delivery_id
        - endpoint_id
        - event_type
        - status
        - attempts
        - created_at
      title: DeliveryView
      type: object
    Problem:
      additionalProperties: false
      description: RFC 9457 problem details; `code` comes from the versioned error catalog.
      properties:
        code:
          title: Code
          type: string
        detail:
          anyOf:
            - type: string
            - type: 'null'
          default: null
          title: Detail
        request_id:
          anyOf:
            - type: string
            - type: 'null'
          default: null
          title: Request Id
        status:
          title: Status
          type: integer
        title:
          title: Title
          type: string
        type:
          default: about:blank
          title: Type
          type: string
      required:
        - title
        - status
        - code
      title: Problem
      type: object
  securitySchemes:
    sourceKey:
      type: http
      scheme: bearer
      description: nia_sk_...
    personToken:
      type: http
      scheme: bearer
      bearerFormat: JWT

````