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

# Test webhook

> Sends a ping event to the endpoint immediately. Useful for verifying connectivity and your signature verification logic.

<ParamField header="x-api-key" type="string" required>
  BOH API key with `admin:webhooks` scope.
</ParamField>

<ParamField path="webhookId" type="string" required>
  Webhook endpoint UUID.
</ParamField>

<ResponseField name="delivery_id" type="string">
  UUID of the test delivery created. Use the [List deliveries](/en/boh-api/webhooks/webhooks-deliveries) endpoint to check its status.
</ResponseField>

<RequestExample>
  ```http theme={null}
  POST /api/v1/public/admin/webhooks/wep_01j5k.../test
  x-api-key: boh_live_xxxxxxxx
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  {
    "delivery_id": "del_01j5k..."
  }
  ```
</ResponseExample>
