A backend event that fires when a ticket order is deleted.
The onOrderDeleted()
event handler runs when a ticket order is deleted.
The received OrderDeletedEvent
object contains information about the deleted order.
Note: Backend events are not fired when previewing your site.
Information about the ticket order that was deleted.
A backend event that fires when a ticket order is initiated.
The onOrderInitiated()
event handler runs when a ticket order is initiated.
The received OrderInitiatedEvent
object contains information about the initiated ticket order.
Note: Backend events are not fired when previewing your site.
Information about the ticket order that was initiated.
A backend event that fires when a ticket order is updated.
The onOrderUpdated()
event handler runs when a ticket order is updated.
The received OrderUpdatedEvent
object contains information about the updated ticket order.
Note: Backend events are not fired when previewing your site.
Information about the ticket order that was updated.
A backend event that fires when a ticket reservation is created.
The onReservationCreated()
event handler runs when a ticket reservation is created.
The received ReservationCreatedEvent
object contains information about the created reservation.
Note: Backend events are not fired when previewing your site.
Information about the ticket reservation that was created.
A backend event that fires when a ticket reservation is updated.
The onReservationUpdated()
event handler runs when a ticket reservation is updated.
The received ReservationUpdatedEvent
object contains information about the updated reservation.
Note: Backend events are not fired when previewing your site.
Information about the ticket reservation that was updated.
A backend event that fires when a guest registers to a Wix event.
The onRsvpCreated()
event handler runs when a guest registers to a Wix event.
The received RsvpCreatedEvent
object contains information about the created RSVP.
Note: Backend events are not fired when previewing your site.
Information about the RSVP that was created.
A backend event that fires when an RSVP is deleted.
The onRsvpDeleted()
event handler runs when an RSVP is deleted.
The received RsvpDeletedEvent
object contains information about the deleted RSVP.
Note: Backend events are not fired when previewing your site.
Information about the RSVP that was deleted.
A backend event that fires when an RSVP is updated.
The onRsvpUpdated()
event handler runs when an RSVP is updated.
The received RsvpUpdatedEvent
object contains information about the updated RSVP.
Note: Backend events are not fired when previewing your site.
Information about the RSVP that was updated.
A backend event that fires when a ticket definition is created.
The onTicketDefinitionCreated()
event handler runs when a ticket definition is created.
The received TicketDefinitionCreatedEvent
object contains information about the created ticket definition.
Note: Backend events are not fired when previewing your site.
Information about the ticket definition that was created.
A backend event that fires when a ticket definition is deleted.
The onTicketDefinitionDeleted()
event handler runs when a ticket definition is deleted.
The received TicketDefinitionDeletedEvent
object contains information about the deleted ticket definition.
Note: Backend events are not fired when previewing your site.
Information about the ticket definition that was deleted.
A backend event that fires when a ticket definition is updated.
The onTicketDefinitionUpdated()
event handler runs when a ticket definition is updated.
The received TicketDefinitionUpdatedEvent
object contains information about the updated ticket definition.
Note: Backend events are not fired when previewing your site.
Information about the ticket definition that was updated.
A backend event that fires when a Wix event is canceled.
The onEventCanceled()
event handler runs when an existing Wix event is canceled.
The received CanceledEvent
object contains information about the event that was canceled.
Note: Backend events are not fired when previewing your site.
function onWixEventCanceled(event: CanceledWixEvent): void;
Information about the Wix event that was canceled.
// Place this code in the events.js file
// of your site's Backend section.
// Add the file if it doesn't exist.
export function wixEvents_onEventCanceled(event) {
let eventId = event.eventId;
let title = event.title;
}
/* Full event object:
* {
* "timestamp": "2020-04-26T13:57:50.699Z",
* "eventId": "46dc2337-d725-4f7e-a0ae-a94a9a1f0c0b",
* "title": "My event",
* "userId": "01cb99e2-e969-421a-b65f-43bea2a66fa1"
* }
*/