Every webhook request includes a signature in the X-Orbit-Signature header:
Verification Example
Here’s how to verify the signature in Node.js:
ImportantAlways verify the signature before processing webhook data. Never trust webhook payloads without verification.
Webhook Secret
Your webhook secret is available in your dashboard under Settings → Webhooks. If you suspect it has been compromised, you can regenerate it at any time.
- Store the secret in environment variables
- Never commit secrets to version control
- Rotate secrets periodically for security
Next: Embed Script →