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

# Test Webhook

> Send a test event to your webhook endpoint

## Path Parameters

<ParamField path="webhook_id" type="string" required>
  The ID of the webhook to test
</ParamField>

## Request Body

<ParamField body="event_type" type="string">
  The type of test event to send (defaults to `video.completed`)
</ParamField>

## Response

```json theme={null}
{
  "success": true,
  "status_code": 200,
  "response_time_ms": 234,
  "message": "Test event delivered successfully"
}
```

## Use Cases

* Verify webhook endpoint is accessible
* Test signature verification in your app
* Debug webhook handling logic
* Confirm event parsing works correctly

<Tip>
  Use test events to validate your webhook implementation before going live.
</Tip>
