---
title: "Test endpoint"
description: "Send a sample event to a webhook endpoint."
section: "API reference"
url: https://dravo.dev/docs/api/webhooks/test
---
# Test endpoint

Send a sample event and inspect the delivery result.

#### `POST /v1/webhooks/{webhook_id}/test`

Send a test event to a webhook endpoint and return the delivery result.

**Auth:** Dashboard JWT only

| Field | In | Type | Required | Description |
| --- | --- | --- | --- | --- |
| `webhook_id` | path | string | yes | Endpoint to test. |

Response `200`: Delivery result.

```json
{
  "id": "del_1",
  "event_type": "post.published",
  "status_code": 200,
  "attempts": 1
}
```
