Webhook support
After every successful purchase, Sardine will fire off a notification or a webhook
to a URL designated by the developer.
A sample webhook ⬇️
For NFT Checkout, the different that can be expected are:
- order.processed - Sardine has processed the payment for this order. Merchant can now complete the transfer of the NFT to the buyer
- order.declined - The order was declined by the payment processor or Sardine for high fraud risk
- order.expired - The order expired before the buyer finished the purchase
- order.cancelled - The order was cancelled
- order.complete - The NFT was successfully delivered to the Buyer
To set up your webhook:
- Provide your webhook URL to your Sardine Integration Manager
- Your Sardine IM will set this up and then provide you with a signing_secret
In order to verify the webhook notification, follow these instructions:
- Construct the signedContent by concatenating the id, timestamp and payload, separated by the full-stop character (.). In code, it will look something like:
signedContent = "${webhook-id}.${webhook-timestamp}.${body}"
where body is the raw body of the request. - To calculate the expected signature, you need to perform an HMAC hash on the
signedContent
from above using the base64 portion of your signing secret (this is the part after the whsec_ prefix) as the key. So if your signing secret is:whsec_ABCDmcQ8DpB7J6Yn4eZqkt48KRPy3a8n
, you’ll want to useABCDmcQ8DpB7J6Yn4eZqkt48KRPy3a8n
- This generated signature should match what is sent in the
webhook-signature
header; make sure to remove the version prefix and delimiter (e.g. v1,) before verifying the signature. Please note that to compare the signatures, it’s recommended to use a constant-time string comparison method in order to prevent timing attacks.