# Verify a webhook endpoint

**POST** `/webhook-endpoints/{webhook_endpoint_id}/verify`

Send a test event to a webhook endpoint to verify it is configured correctly.

### Path Parameters

- `webhook_endpoint_id` `string` _(required)_ — Unique identifier for the webhook endpoint.

### Body Parameters

- `event_type` `string` _(required)_ — The event type to send a test webhook for

**Request**

```shell
curl 'https://api.column.com/webhook-endpoints/<webhook_id>/verify' \
  -XPOST \
  -u :<YOUR API KEY> \
  -d event_type="ach.outgoing_transfer.initiated"
```

**Response 200**

```json
{
  "request_body": "",
  "response_body": "",
  "response_code": 0,
  "success": true
}
```
