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

# Retry webhook event

> Manually retries delivery for a webhook event.



## OpenAPI

````yaml /openapi.yaml post /v1/webhook-events/{id}/retry
openapi: 3.0.3
info:
  title: Quentli REST API
  version: 1.0.0
  description: OpenAPI spec for Quentli REST endpoints.
servers:
  - url: https://api.quentli.com
    description: Production API
  - url: https://api.staging.quentli.com
    description: Staging API for production-like validation
  - url: https://api.demo.quentli.com
    description: Demo API hostname served by staging
security:
  - organizationApiKey: []
tags:
  - name: Auth
  - name: Billing
  - name: Catalog
  - name: Customers
  - name: Invoices
  - name: Payment Methods
  - name: Payment Sessions
  - name: Payments
  - name: Subscriptions
  - name: Tax Invoices
  - name: Webhooks
paths:
  /v1/webhook-events/{id}/retry:
    post:
      tags:
        - Webhooks
      summary: Retry webhook event
      description: Manually retries delivery for a webhook event.
      operationId: webhook_events_retry
      parameters:
        - schema:
            type: string
            description: Identifier of the webhook event.
          required: true
          description: Identifier of the webhook event.
          name: id
          in: path
      responses:
        '200':
          description: Webhook event retried
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RetryWebhookEventPayload'
        '400':
          description: Invalid request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UserError'
        '401':
          description: Authentication required
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UserError'
        '403':
          description: Permission denied
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UserError'
        '404':
          description: Webhook event not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UserError'
components:
  schemas:
    RetryWebhookEventPayload:
      type: object
      properties:
        id:
          type: string
          description: Unique identifier of the webhook event.
          example: we_1234567890abcdefghij
        createdAt:
          anyOf:
            - type: string
              description: Date string
            - type: string
              format: date-time
              description: Date object
          description: When the webhook event was created.
        updatedAt:
          anyOf:
            - type: string
              description: Date string
            - type: string
              format: date-time
              description: Date object
          description: When the webhook event was last updated.
        webhookId:
          type: string
          description: Webhook that receives this event.
          example: w_1234567890abcdefghij
        type:
          type: string
          enum:
            - INVOICE_CREATED
            - INVOICE_CANCELED
            - INVOICE_PAID
            - INVOICE_PAID_OTHER
            - INVOICE_UPDATED
            - PAYMENT_CREATED
            - PAYMENT_COMPLETED
            - PAYMENT_REFUNDED
            - PAYMENT_REMINDER_SENT
            - PAYMENT_ATTEMPT_FAILED
            - PAYMENT_ATTEMPT_SUCCEEDED
            - CUSTOMER_CREATED
            - CUSTOMER_UPDATED
            - CUSTOMER_ARCHIVED
            - SUBSCRIPTION_CREATED
            - SUBSCRIPTION_UPDATED
            - SUBSCRIPTION_CANCELED
            - PAYMENT_METHOD_CREATED
          description: Webhook event type.
        status:
          type: string
          enum:
            - PENDING
            - SUCCESSFUL
            - RETRYING
            - FAILED
          description: Current delivery status.
          example: SUCCESSFUL
        payload:
          type: string
          description: Serialized event payload.
        nextCallAt:
          anyOf:
            - type: string
              description: Date string
            - type: string
              format: date-time
              description: Date object
            - nullable: true
          description: Next scheduled retry time, if any.
          example: null
        connectionId:
          type: string
          description: Webhook connection identifier.
      required:
        - id
        - createdAt
        - updatedAt
        - webhookId
        - type
        - status
        - payload
        - connectionId
      description: Webhook event after queuing or attempting a manual retry.
    UserError:
      type: object
      properties:
        error:
          type: object
          properties:
            message:
              type: string
          required:
            - message
      required:
        - error
      additionalProperties: false
      description: Standard user-facing error response envelope.
  securitySchemes:
    organizationApiKey:
      type: http
      scheme: bearer
      description: 'Organization API key using `Authorization: Bearer sk_...`.'

````