Test Webhook
Send a test event to verify your webhook configuration.
This endpoint sends a test event to your configured webhook URL, allowing you to verify that:
- Your endpoint is reachable
- Your signature verification is working correctly
- Your endpoint responds appropriately
The test event will include a real HMAC signature that you can verify using your webhook secret.
Test Event Payload
The test event has the following structure:
{
"event_type": "webhook.test",
"message": "This is a test webhook event to verify your endpoint configuration."
}
Error Handling
| Error Type | Message | When |
|---|---|---|
Webhook not found | The webhook ID doesn’t exist or belongs to a different domain | |
Webhook is disabled | The webhook exists but is not enabled (enabled: false) |
Authorizations
Your public API key. Identifies the partner making the request.
Monotonically increasing nonce included in the request signature.
HMAC signature over the request, computed with your private key.
Headers
Client-generated UUIDv4 for safe retries. Sent as the Idempotency-Key HTTP header. Replayed responses include the Idempotent-Replayed: true header.
^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-4[0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}$"550e8400-e29b-41d4-a716-446655440000"
Path Parameters
Unique identifier for the webhook
"WHTEST-XXXXX-EXAMPLE"
Response
Test webhook sent (check result for delivery status)