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

# Test Webhook

> Send a test payload to a registered webhook URL to verify connectivity.

## Overview

Fires a single test delivery to the specified webhook URL. Useful for verifying connectivity and signature validation logic before going live.

**Tier:** Basic 🔒

## Request

<ParamField body="webhook_id" type="string" required>
  UUID of the webhook subscription to test.
</ParamField>

## Response

<ResponseField name="success" type="boolean">
  Whether the delivery received a 2xx HTTP response.
</ResponseField>

<ResponseField name="status_code" type="integer">
  HTTP status code from your endpoint. `null` if the request failed to connect.
</ResponseField>

<ResponseField name="message" type="string">
  Human-readable delivery result.
</ResponseField>

<RequestExample>
  ```bash theme={null}
  curl -X POST https://api.aioka.io/v1/webhooks/test \
    -H "X-API-Key: aik_basic_..." \
    -H "Content-Type: application/json" \
    -d '{"webhook_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6"}'
  ```
</RequestExample>

<ResponseExample>
  ```json theme={null}
  {
    "success": true,
    "status_code": 200,
    "message": "Test payload delivered successfully"
  }
  ```
</ResponseExample>
