Skip to main content
Each webhook request includes headers that allow you to verify the signature and prevent replay attacks. Signature headers:

Verifying with the Svix SDK

The easiest way to verify signatures is with an official Svix library.

Getting your signing secret

  1. Open the Juo Admin Portal and navigate to Settings → Webhooks
  2. Navigate to your endpoint
  3. Copy the Signing Secret shown under the endpoint settings
Each endpoint has its own unique signing secret.

Manual verification

If you prefer not to use the Svix SDK, you can verify the signature manually:
  1. Construct the signed content: {svix-id}.{svix-timestamp}.{raw-body}
  2. Compute HMAC-SHA256 using the signing secret (base64-decoded)
  3. Compare the result against the svix-signature header (strip the v1, prefix)
  4. Reject messages older than 5 minutes using svix-timestamp
See the Svix documentation for details.