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

# Resend a failed webhook

> Re-queues a failed webhook for immediate delivery. The webhook must have status "failed".



## OpenAPI

````yaml /api-reference/openapi.json post /api/v1/webhooks/{id}/resend
openapi: 3.0.0
info:
  title: PlugToPay API
  description: API to make payments easy in multiple gateways.
  version: 1.0.0
servers:
  - url: http://localhost:7701
    description: Test Server
security: []
paths:
  /api/v1/webhooks/{id}/resend:
    post:
      tags:
        - Webhooks
      summary: Resend a failed webhook
      description: >-
        Re-queues a failed webhook for immediate delivery. The webhook must have
        status "failed".
      operationId: 59400804d82a4e215e707c88562d5f48
      parameters:
        - $ref: '#/components/parameters/XClientId'
        - name: id
          in: path
          required: true
          schema:
            type: string
            example: wh_abc123def456
      responses:
        '200':
          description: Webhook re-queued successfully
        '401':
          description: Unauthorized — Missing or invalid API Key
        '404':
          description: Webhook not found
        '422':
          description: Webhook is not in failed status
      security:
        - ApiKeyAuth: []
components:
  parameters:
    XClientId:
      name: x-client-id
      in: header
      description: Client identifier for the company in the request.
      required: true
      schema:
        type: string
        example: client_abc123
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      description: Company API key. Send in the X-API-Key header.
      name: X-API-Key
      in: header

````