Webhook Subscriptions
Send test event
Dispatches a signed ping.test event to this subscription's URL through the same pipeline as real events. Useful for verifying your receiver's reachability and signature verification in any environment without creating a real business event. Test-event failures do not affect the subscription's health counters or trigger failure-notification emails.
post/v1/webhook_subscriptions/{id}/send_test_event
Path parameters
idstring uuid required
Unique identifier of the webhook subscription.
Headers
Idempotency-Keystring
Idempotency key for safe retries. Reusing a key with an identical request body returns the cached response. Reusing a key with a different body returns 409.
Response
The newly created webhook event. Poll its delivery via GET /v1/webhook_deliveries?event_id={id} for receiver status.