Wix emits platform events when things happen across the platform, like a contact being created, an order being paid for, or a booking being confirmed. An event extension is a backend extension that runs code when one of those events occurs. For development paths where Wix doesn't host the backend, the same events are delivered as webhooks to an HTTP endpoint you provide instead.
For example, you can register an event extension for the Booking Confirmed event. When a customer confirms a booking, Wix calls the extension's handler with the booking details. The extension can use those details to send a confirmation email, sync the booking to an external calendar, or trigger other downstream logic.
Wix exposes events across the platform, including events from Wix business solutions like Bookings, Stores, eCommerce, and CRM, site activity like form submissions, member sign-ups, and file uploads, and app lifecycle events like app installs and uninstalls.
Receiving an event requires a permission scope, just like calling a method. Each event in the API reference lists the scopes that allow an app to subscribe to it.
An event handler runs with no caller identity. Wix calls the handler on its own when an event fires, so there's no Wix user, member, or visitor identity attached, and the SDK's default auth in this context is null. To call Wix APIs from the handler, you must use elevation.
What elevated calls can do is bounded:
For app-owned event extensions, the inbound event from Wix is signed so the handler can verify it actually came from Wix. The Wix CLI handles this verification.
Important: Event extensions aren't tied to app versions. Changes you release deploy to production immediately and affect all existing installations, without a new version release.
The development path determines how code reacts to platform events:
Last updated: 2 August 2026