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

# Trigger Events

> Manually trigger a webhook event to be sent again. Useful for testing or retrying failed webhook deliveries.

Manually trigger a webhook event to be sent again. This is useful for testing webhook endpoints or retrying failed webhook deliveries.

## Overview

This endpoint allows you to manually retrigger a webhook event. This is particularly useful when:

* Testing your webhook endpoint
* Retrying a failed webhook delivery
* Replaying an event for debugging purposes

## Path Parameters

<ParamField path="id" type="string" required>
  Webhook event UUID to trigger
</ParamField>

## Response

<ResponseField name="data" type="object">
  Trigger response containing:

  * `event_id`: The event ID that was triggered
  * `acknowledged`: Whether the event was acknowledged
  * `attempts`: Number of delivery attempts
  * `message`: Status message
</ResponseField>

<Note>
  Triggering an event will increment the attempt counter and send the webhook to your configured endpoint again.
</Note>


## OpenAPI

````yaml POST /webhooks/events/trigger/{id}
openapi: 3.0.0
info:
  title: Pooler Developer API
  description: >-
    Comprehensive API documentation for Pooler payment and financial services
    platform
  version: 1.0.0
servers:
  - url: https://api.usepooler.com
    description: Production server
  - url: https://sandbox.usepooler.com
    description: Sandbox server
security:
  - bearerAuth: []
paths:
  /webhooks/events/trigger/{id}:
    post:
      tags:
        - Webhooks
      summary: Trigger Events
      description: >-
        Manually trigger a webhook event to be sent again. Useful for testing or
        retrying failed webhook deliveries.
      operationId: triggerWebhookEvent
      parameters:
        - name: id
          in: path
          required: true
          description: Webhook event ID
          schema:
            type: string
            format: uuid
      responses:
        '202':
          description: Webhook event triggered successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/WebhookTriggerResponse'
components:
  schemas:
    WebhookTriggerResponse:
      type: object
      properties:
        success:
          type: boolean
        message:
          type: string
        stan:
          type: string
          format: uuid
        data:
          $ref: '#/components/schemas/WebhookTriggerData'
    WebhookTriggerData:
      type: object
      properties:
        acknowledged:
          type: boolean
        attempts:
          type: integer
        event_id:
          type: string
          format: uuid
        message:
          type: string
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: >-
        Bearer token authentication. Include your API key in the Authorization
        header as: Bearer {your_api_key}

````