Webhooks Documentation
Webhooks allow LUTERAS to automatically send real-time event notifications to your application whenever important events occur.
POST https://yourdomain.com/webhook
| Event | Description |
|---|---|
| payment.success | Payment completed successfully. |
| subscription.cancelled | User cancelled subscription. |
| license.created | A new license was generated. |
| license.verified | A license was successfully verified. |
{
"event":"license.created",
"license_key":"LT-ABCD-1234",
"customer_email":"john@example.com",
"timestamp":"2026-06-25T12:00:00Z"
}
Always verify webhook signatures and only accept HTTPS requests from trusted sources.