onGuestUpdated( )


A backend event that fires when a Guest is updated.

The onGuestUpdated() event handler runs when a Guest is updated from your site. The received GuestUpdated object contains information about the updated guest.

Note: Backend events are not fired when previewing your site.

Method Declaration
Copy
Method Parameters
eventGuestUpdated

Information about the updated guest and onGuestUpdated event.

A backend event that occurs when a guest is updated
JavaScript
Errors

This method doesn’t return any custom errors, but may return standard errors. Learn more about standard Wix errors.

Did this help?

onPolicyCreated( )


A backend event that fires when a Policy is created.

The onPolicyCreated() event handler runs when a Policy is created in your site. The received PolicyCreated object contains information about the new policy.

Note: Backend events are not fired when previewing your site.

Method Declaration
Copy
Method Parameters
eventPolicyCreated

Information about the created policy and onPolicyCreated event.

A backend event that occurs when a policy is created
JavaScript
Errors

This method doesn’t return any custom errors, but may return standard errors. Learn more about standard Wix errors.

Did this help?

onPolicyDeleted( )


A backend event that fires when a Policy is deleted.

The onPolicyDeleted() event handler runs when a Policy is deleted in your site. The received PolicyDeleted object contains information about the deleted policy.

Note: Backend events are not fired when previewing your site.

Method Declaration
Copy
Method Parameters
eventPolicyDeleted

Information about the onPolicyDeleted event.

A backend event that occurs when a policy is deleted
JavaScript
Errors

This method doesn’t return any custom errors, but may return standard errors. Learn more about standard Wix errors.

Did this help?

onPolicyUpdated( )


A backend event that fires when a Policy is updated.

The onPolicyUpdated() event handler runs when a Policy is updated in your site. The received PolicyUpdated object contains information about the updated policy.

Note: Backend events are not fired when previewing your site.

Method Declaration
Copy
Method Parameters
eventPolicyUpdated
A backend event that occurs when a policy is updated
JavaScript
Errors

This method doesn’t return any custom errors, but may return standard errors. Learn more about standard Wix errors.

Did this help?

onEventCanceled( )


Developer Preview

This API is subject to change. Bug fixes and new features will be released based on developer feedback throughout the preview period.

Method Declaration
Copy
Method Parameters
eventEventCanceled
onEventCanceled example
JavaScript
Errors

This method doesn’t return any custom errors, but may return standard errors. Learn more about standard Wix errors.

Did this help?

onEventCreated( )


Developer Preview

This API is subject to change. Bug fixes and new features will be released based on developer feedback throughout the preview period.

Triggered when either draft or published event is created.

Method Declaration
Copy
Method Parameters
eventEventCreated
onEventCreated example
JavaScript
Errors

This method doesn’t return any custom errors, but may return standard errors. Learn more about standard Wix errors.

Did this help?

onEventDeleted( )


Developer Preview

This API is subject to change. Bug fixes and new features will be released based on developer feedback throughout the preview period.

Triggered when an event is deleted.

Method Declaration
Copy
function wixEventsV3_onEventDeleted(event: EventDeleted): void;
Method Parameters
eventEventDeleted
onEventDeleted example
JavaScript
export function wixEventsV3_onEventDeleted(event) { const eventId = event.metadata.id; const entityId = event.entity._id; }
Errors

This method doesn’t return any custom errors, but may return standard errors. Learn more about standard Wix errors.

Did this help?