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

# Trigger a test webhook

> Sends a test event to the workspace-configured webhook URL. Returns 200 with an `{ ok }` indicator regardless of delivery outcome.



## OpenAPI

````yaml api-reference/openapi.json post /v1/kyc/webhooks/test
openapi: 3.1.0
info:
  title: VerisecID KYC API
  description: Hosted KYC sessions to verify users via a secure, managed flow.
  version: 1.0.0
servers:
  - url: https://api.verisecid.com
security:
  - bearerAuth: []
tags:
  - name: Hosted sessions
    description: Create and manage hosted verification sessions
  - name: Direct verification
    description: Run verification with provided images using a secret key
  - name: Webhooks
    description: Receive verification events and test deliveries
paths:
  /v1/kyc/webhooks/test:
    post:
      tags:
        - Webhooks
      summary: Trigger a test webhook
      description: >-
        Sends a test event to the workspace-configured webhook URL. Returns 200
        with an `{ ok }` indicator regardless of delivery outcome.
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                workspaceId:
                  type: string
              required:
                - workspaceId
      responses:
        '200':
          description: Delivery attempted
          content:
            application/json:
              schema:
                type: object
                properties:
                  ok:
                    type: boolean
                  status:
                    type:
                      - integer
                      - 'null'
                  error:
                    type:
                      - string
                      - 'null'
                required:
                  - ok
      security: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````