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

# Test Event

> Fired when a webhook test is triggered from the dashboard.

**Inbound webhook callback** — Humanos POSTs this payload to your registered webhook URL. This is not an endpoint you call; it is documented as a path so SDK code generators emit a typed payload model.



## OpenAPI

````yaml /versions/2026-07-06.yaml post /_webhooks/test
openapi: 3.1.0
info:
  title: Humanos API
  description: Humanos API
  version: '1.0'
  contact: {}
servers: []
security: []
tags:
  - name: humanosApp
    description: ''
paths:
  /_webhooks/test:
    post:
      tags:
        - Webhooks
      summary: Test Event
      description: >-
        Fired when a webhook test is triggered from the dashboard.


        **Inbound webhook callback** — Humanos POSTs this payload to your
        registered webhook URL. This is not an endpoint you call; it is
        documented as a path so SDK code generators emit a typed payload model.
      operationId: webhooks_test
      parameters:
        - $ref: '#/components/parameters/ApiVersion'
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/TestEvent'
      responses:
        '200':
          description: Webhook received successfully
components:
  parameters:
    ApiVersion:
      name: API-Version
      in: header
      required: false
      schema:
        type: string
        pattern: ^\d{4}-\d{2}-\d{2}$
        example: '2026-07-06'
      description: >-
        Pin request, response, and webhook shapes to a specific dated API
        version (YYYY-MM-DD). Omit to use the version pinned to your API key
        (set when the key is created; new keys default to the latest version).
        New integrations should target the latest version.
  schemas:
    TestEvent:
      type: object
      properties:
        eventType:
          type: string
          enum:
            - test
        requestId:
          type: string
        internalId:
          type: string
        issuerDid:
          type: string
        user:
          type: object
          properties:
            contact:
              type: string
            id:
              type: string
            internalId:
              type: string
          required:
            - contact
            - id
          additionalProperties: false
        api_version:
          type: string
        message:
          type: string
      required:
        - api_version
        - eventType
        - issuerDid
        - message
        - requestId
        - user
      additionalProperties: false

````