Skip to main content
POST
/
partner
/
v1
/
webhooks
/
{id}
/
test
curl -X POST https://prod.api.unleeshed.ai/partner/v1/webhooks/whk_abc123/test \
  -H "X-Api-Key: your_api_key"
{
  "success": true,
  "test_event_id": "evt_test_abc123",
  "delivery_status": "delivered",
  "response_code": 200,
  "error": null
}
Send a test event to your webhook endpoint to verify connectivity and signature verification.

Path Parameters

id
string
required
Webhook ID

Response

success
boolean
Whether the test delivery succeeded
test_event_id
string
ID of the test event
delivery_status
string
delivered or failed
response_code
number
HTTP response code from your endpoint
error
string
Error message if delivery failed
curl -X POST https://prod.api.unleeshed.ai/partner/v1/webhooks/whk_abc123/test \
  -H "X-Api-Key: your_api_key"
{
  "success": true,
  "test_event_id": "evt_test_abc123",
  "delivery_status": "delivered",
  "response_code": 200,
  "error": null
}