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.
Information about the updated guest and onGuestUpdated
event.
This method doesn’t return any custom errors, but may return standard errors. Learn more about standard Wix errors.
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.
Information about the created policy and onPolicyCreated
event.
This method doesn’t return any custom errors, but may return standard errors. Learn more about standard Wix errors.
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.
Information about the onPolicyDeleted
event.
This method doesn’t return any custom errors, but may return standard errors. Learn more about standard Wix errors.
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.
This method doesn’t return any custom errors, but may return standard errors. Learn more about standard Wix errors.
This API is subject to change. Bug fixes and new features will be released based on developer feedback throughout the preview period.
This method doesn’t return any custom errors, but may return standard errors. Learn more about standard Wix errors.
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.
This method doesn’t return any custom errors, but may return standard errors. Learn more about standard Wix errors.
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.
function wixEventsV3_onEventDeleted(event: EventDeleted): void;
export function wixEventsV3_onEventDeleted(event) {
const eventId = event.metadata.id;
const entityId = event.entity._id;
}
This method doesn’t return any custom errors, but may return standard errors. Learn more about standard Wix errors.