Use webhooks to receive real-time notifications about events in your Lukittu account.
LICENSE_CREATED
LICENSE_UPDATED
LICENSE_DELETED
CUSTOMER_CREATED
PRODUCT_CREATED
X-Lukittu-Event
: The name of the event that triggered the webhook.X-Lukittu-Timestamp
: A UTC timestamp of when the request was sent.X-Lukittu-Signature
: The HMAC-SHA256 signature..
).
HMAC-SHA256(secret, timestamp + '.' + requestBody)
You should always use a constant-time string comparison function to compare the expected signature with the received signature to prevent timing attacks.