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

# Replay Failed Webhook Deliveries

> Try sending your failed webhook notifications again.

Sometimes a notification can't reach your server (for example, your server
was briefly down). This endpoint takes those failed notifications and tries
to send them again right away.

### Choosing what to resend

You can add one or more of these optional filters to control what gets
resent:

- ``delivery_id`` — resend just one specific notification
- ``event_id`` — resend every failed notification for one specific event
- ``endpoint_id`` — resend every failed notification for one specific webhook
- ``limit`` — the most notifications to resend at once (default 100, up to 500)

If you don't add any filters, the most recent failed notifications are
resent, up to the ``limit``.



## OpenAPI

````yaml POST /v1/platform/webhooks/deliveries/replay-failed
openapi: 3.1.0
info:
  title: Finogate Platform API v1
  version: 0.1.0
servers:
  - url: https://api-sandbox.finogates.com
    description: Sandbox
  - url: https://api.finogates.com
    description: Production
security: []
tags:
  - name: auth
  - name: users
  - name: payees
  - name: verification
  - name: bank accounts
  - name: card processing
  - name: digital-assets
  - name: international
  - name: fees
  - name: onboarding
  - name: pending-applications
  - name: wallets
  - name: payments
  - name: document mailing
  - name: merchant onboarding
  - name: catalog
  - name: webhooks
  - name: screening
  - name: Platform - File Scanning
  - name: phone-numbers
  - name: sms
  - name: calls
  - name: listings
  - name: Card Transfers
  - name: embed-tokens
paths:
  /v1/platform/webhooks/deliveries/replay-failed:
    post:
      tags:
        - webhooks
      summary: Resend Failed Webhook Notifications
      description: >-
        Try sending your failed webhook notifications again.


        Sometimes a notification can't reach your server (for example, your
        server

        was briefly down). This endpoint takes those failed notifications and
        tries

        to send them again right away.


        ### Choosing what to resend


        You can add one or more of these optional filters to control what gets

        resent:


        - ``delivery_id`` — resend just one specific notification

        - ``event_id`` — resend every failed notification for one specific event

        - ``endpoint_id`` — resend every failed notification for one specific
        webhook

        - ``limit`` — the most notifications to resend at once (default 100, up
        to 500)


        If you don't add any filters, the most recent failed notifications are

        resent, up to the ``limit``.
      operationId: >-
        replay_failed_deliveries_v1_platform_webhooks_deliveries_replay_failed_post
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/PlatformWebhookDeliveryReplayRequest'
        required: true
      responses:
        '200':
          description: How many failed deliveries were queued to resend.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CommonResponse'
              example:
                status_code: 202
                data:
                  replayed_count: 3
                query_generated_time: 1712847600000
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - _AuthenticatedBearer: []
components:
  schemas:
    PlatformWebhookDeliveryReplayRequest:
      properties:
        delivery_id:
          anyOf:
            - type: string
              format: uuid
            - type: 'null'
          title: Delivery Id
          description: Replay a single delivery by UUID.
          examples:
            - a1b2c3d4-e5f6-7890-abcd-ef1234567890
        event_id:
          anyOf:
            - type: string
              format: uuid
            - type: 'null'
          title: Event Id
          description: Replay all failed deliveries for a specific event.
          examples:
            - d4e5f6a7-b8c9-0123-4567-89abcdef0123
        endpoint_id:
          anyOf:
            - type: string
              format: uuid
            - type: 'null'
          title: Endpoint Id
          description: Replay all failed deliveries for a specific endpoint.
          examples:
            - c3a1e8b2-4f6d-4a9c-b2e1-8f3d5a7c9e01
        limit:
          type: integer
          maximum: 500
          minimum: 1
          title: Limit
          description: Maximum number of deliveries to replay.
          default: 100
          examples:
            - 50
      type: object
      title: PlatformWebhookDeliveryReplayRequest
      description: |-
        Replay selector for failed webhook deliveries (platform API).

        Provide at least one filter, or omit all to replay up to ``limit``
        most-recent failures.
    CommonResponse:
      properties:
        status_code:
          type: integer
          title: Status Code
          description: HTTP status code for the response.
        data:
          title: Data
          description: Payload or error details.
        query_generated_time:
          type: integer
          title: Query Generated Time
          description: >-
            UTC timestamp (milliseconds since epoch) when response was
            generated.
      type: object
      required:
        - status_code
        - data
        - query_generated_time
      title: CommonResponse
      description: |-
        Standard response wrapper for single-object responses and errors.

        Generic over the payload type. A route that declares
        ``CommonResponse[SomeModel]`` gets the real ``data`` schema rendered in
        OpenAPI/Swagger; a bare ``CommonResponse`` leaves ``data`` untyped.
    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
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    _AuthenticatedBearer:
      type: oauth2
      flows:
        password:
          scopes: {}
          tokenUrl: /v1/platform/auth/token

````