HMAC Verification
We strongly recommend verifying each webhook request using Hash-based Message Authentication Code (HMAC) signatures to protect your server from unauthorized webhook events. Each event will include a signature calculated using a secret HMAC key (provided to you on webhook configuration) and the payload from the webhook. Verifying this signature confirms that the webhook event was sent by Rentalcover and remained unaltered during transmission.
Example code on how to validate HMAC signature.
Last updated