Every webhook notification sent by xMenu includes a security signature that allows you to verify its authenticity.Documentation Index
Fetch the complete documentation index at: https://api-doc.xmenu.it/llms.txt
Use this file to discover all available pages before exploring further.
Security Header
Each webhook request contains the following header:Webhook Secret
You can find your Webhook Secret in the restaurant panel under Tools > API Access.Signature Validation
To verify that a webhook notification is authentic:- Retrieve the
X-Xmenu-Signatureheader from the incoming request - Compute the HMAC-SHA256 hash of the request body using your Webhook Secret
- Compare the computed hash with the signature from the header
- Reject the request if the signatures don’t match