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

# Replay an inbound webhook delivery

> Re-dispatches a previously-received inbound delivery from the DLQ. The original envelope is preserved verbatim — signature verification is not re-run (the receipt is already trusted), and the dedup window is bypassed (the operator is intentionally re-delivering). Use after deploying a connector-side fix to clear stuck deliveries. See [Inbound webhooks — manual replay](/api/inbound-webhooks#manual-replay).



## OpenAPI

````yaml /openapi.json post /connections/{id}/inbound-webhooks/{webhook_id}/deliveries/{event_id}/retry
openapi: 3.1.0
info:
  title: Marfa API
  version: 4.2.0
  description: Typed data layer for structured personal data
servers: []
security: []
paths:
  /connections/{id}/inbound-webhooks/{webhook_id}/deliveries/{event_id}/retry:
    post:
      tags:
        - Inbound Webhooks
      summary: Replay an inbound webhook delivery
      description: >-
        Re-dispatches a previously-received inbound delivery from the DLQ. The
        original envelope is preserved verbatim — signature verification is not
        re-run (the receipt is already trusted), and the dedup window is
        bypassed (the operator is intentionally re-delivering). Use after
        deploying a connector-side fix to clear stuck deliveries. See [Inbound
        webhooks — manual replay](/api/inbound-webhooks#manual-replay).
      parameters:
        - schema:
            type: string
          required: true
          name: id
          in: path
        - schema:
            type: string
          required: true
          name: webhook_id
          in: path
        - schema:
            type: string
          required: true
          name: event_id
          in: path
      responses:
        '200':
          description: Event row reset; back in the pending queue
          content:
            application/json:
              schema:
                type: object
                properties:
                  ok:
                    type: boolean
                    enum:
                      - true
                required:
                  - ok
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: object
                    properties:
                      code:
                        type: string
                        enum:
                          - unauthorized
                      message:
                        type: string
                      details:
                        type: object
                        additionalProperties:
                          nullable: true
                    required:
                      - code
                      - message
                required:
                  - error
        '403':
          description: Caller cannot manage this connection
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: object
                    properties:
                      code:
                        type: string
                        enum:
                          - forbidden
                      message:
                        type: string
                      details:
                        type: object
                        additionalProperties:
                          nullable: true
                    required:
                      - code
                      - message
                required:
                  - error
        '404':
          description: Connection, subscription, or event not found
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: object
                    properties:
                      code:
                        type: string
                        enum:
                          - connection_not_found
                          - inbound_webhook_not_found
                          - inbound_webhook_event_not_found
                      message:
                        type: string
                      details:
                        type: object
                        additionalProperties:
                          nullable: true
                    required:
                      - code
                      - message
                required:
                  - error
      security:
        - bearerAuth: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: API Key or OAuth Token
      description: Pass an API key (marfa_k1_...) or OAuth access token (marfa_at_...)

````