webhook
Webhooks
Configure HTTP callbacks for system events.
Total
0
Active
0
Inactive
0
Errored
0
Configured Webhooks
Manage delivery endpoints, subscribed events, status, and test sends.
Loading webhooks...
vpn_key
Webhook Signatures
Each delivery includes an X-Webhook-Signature header signed with HMAC-SHA256 using the webhook secret. Verify the signature before trusting the payload.
const sig = "sha256=" + crypto.createHmac("sha256", secret).update(body).digest("hex");