Webhook Testing

View as Markdown

Use webhook testing before production launch to confirm your endpoint accepts HTTPS requests, verifies signatures, and returns 2xx quickly.

Test payload

If you do not provide a custom payload, SimZ sends a simple test event.

1{
2 "event": "webhook.test",
3 "timestamp": "2026-05-20T12:00:00.000Z"
4}

What to check

  • Endpoint URL starts with https://.
  • Server reads the raw request body for signature verification.
  • Response status is 2xx.
  • Heavy downstream work runs asynchronously.
  • Logs do not expose secrets.