Every webhook delivery is signed with your webhook’s secret using HMAC-SHA256. Always verify the signature before processing the payload to ensure the request is authentic.Documentation Index
Fetch the complete documentation index at: https://dronebundle.com/docs/llms.txt
Use this file to discover all available pages before exploring further.
How it works
- DroneBundle computes an HMAC-SHA256 hash of the raw JSON request body using your webhook’s secret
- The hash is sent in the
x-dronebundle-signatureheader in the formatsha256=<hex_digest> - Your server computes the same hash and compares the two values