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

# Trigger Webhook Event

> Manually trigger a webhook event for testing purposes using the webhook event's unique ID



## OpenAPI

````yaml /api-reference/openapi.json post /onboarding/api/v1/webhooks/trigger/{webhook_id}
openapi: 3.0.0
info:
  title: Carbn Connect API
  version: 1.0.0
  description: >-
    API documentation for Carbn Connect services including user onboarding, KYC,
    wallet management, and transfers.
servers:
  - url: https://api.carbnconnect.com
    description: Production server
security:
  - ApiKeyAuth: []
paths:
  /onboarding/api/v1/webhooks/trigger/{webhook_id}:
    post:
      tags:
        - Webhook Management
      summary: Trigger Webhook Event
      description: >-
        Manually trigger a webhook event for testing purposes using the webhook
        event's unique ID
      operationId: triggerWebhookEvent
      parameters:
        - name: webhook_id
          in: path
          required: true
          schema:
            type: string
            format: uuid
          example: xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
          description: The unique identifier of the webhook event to trigger
      responses:
        '200':
          description: Webhook triggered successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/WebhookTriggerResponse'
        '400':
          description: Invalid request
        '401':
          description: Unauthorized - API key is missing or invalid
        '404':
          description: Webhook event not found
      security:
        - ApiKeyAuth: []
components:
  schemas:
    WebhookTriggerResponse:
      type: object
      properties:
        id:
          type: string
          format: uuid
          example: xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
          description: The webhook event ID that was triggered
        trigger_status:
          type: string
          enum:
            - success
            - failed
          example: success
          description: Status of the webhook trigger attempt
        triggered_at:
          type: string
          format: date-time
          example: YYYY-MM-DDTHH:MM:SS.sssZ
          description: Timestamp when the webhook was triggered
        message:
          type: string
          example: Webhook triggered successfully
          description: Status message for the trigger attempt
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key
      description: API key for authentication. Must be included in the x-api-key header.

````