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

# Test Webhook

> Test endpoint to verify webhook connectivity.

Returns a simple success response to verify VAPI can reach the webhook.



## OpenAPI

````yaml /connectors/openapi/brunkhorst-openapi.json post /api/vapi/webhook/test
openapi: 3.1.0
info:
  title: Brunkhorst Connector
  description: >

    ## Zeitmechanik Booking Integration


    This connector provides a REST API for the Zeitmechanik workshop booking
    system used by Autohaus Brunkhorst.


    ### Features


    - **Service Catalog**: Browse available workshop services (inspections,
    maintenance, repairs)

    - **Availability Check**: Find available days and time slots for selected
    services

    - **Appointment Booking**: Two-step reservation and confirmation flow

    - **Customer Lookup**: Search existing customers by phone, name, or license
    plate


    ### Booking Flow


    1. **Get Services** → List available services and select one or more

    2. **Check Days** → Get available days for the selected services (filtered
    to 14+ days out)

    3. **Check Times** → Get available time slots for a specific day

    4. **Reserve** → Reserve a time slot (holds for ~10 minutes)

    5. **Confirm** → Complete booking with customer and vehicle details


    ### Authentication


    All endpoints (except `/health` and `/ready`) require an `X-API-Key` header.
    Requests may also be restricted by IP whitelist.
  contact:
    name: AICO Engineering
    url: https://aicoflow.com/
  license:
    name: Proprietary
  version: 1.0.0
servers:
  - url: https://brunkhorst.connectors.aicoflow.com
    description: Production
  - url: http://localhost:8101
    description: Local development
security:
  - ApiKeyAuth: []
tags:
  - name: Services
    description: >-
      Service catalog operations. Browse available workshop services like
      inspections, maintenance, and repairs.
  - name: Availability
    description: >-
      Check appointment availability. Find open days and time slots for selected
      services.
  - name: Booking
    description: >-
      Appointment booking flow. Reserve time slots and confirm appointments with
      customer/vehicle details.
  - name: Lookup
    description: >-
      Customer and vehicle lookup. Search existing records by phone, name, or
      license plate.
  - name: Health
    description: Service health and readiness checks.
paths:
  /api/vapi/webhook/test:
    post:
      tags:
        - vapi-webhook
      summary: Test Webhook
      description: |-
        Test endpoint to verify webhook connectivity.

        Returns a simple success response to verify VAPI can reach the webhook.
      operationId: test_webhook_api_vapi_webhook_test_post
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
components:
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-API-Key

````