MarminDeveloper Docs

Webhook Signature Verification


Every webhook request is signed using HMAC SHA256.

Signature Details

PropertyValue
AlgorithmHMAC SHA256
Signing SecretWebhook Signing Secret
MessageRaw HTTP request body
EncodingBase64
Headerx-marmin-signature

Always verify using the raw request body (before JSON parsing).

See the right panel for JavaScript and Python examples of computing and verifying the webhook signature.

Next