onEventDeleted( )


A backend event that fires when a Wix event is deleted.

The onEventDeleted() event handler runs when an existing event is deleted. The received DeletedEvent object contains information about the event that was deleted.

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

Method Declaration
Copy
function onEventDeleted(event: DeletedEvent): void;
Method Parameters
eventDeletedEventRequired

Information about the event that was deleted.

A backend event that occurs when an existing Wix event is deleted
JavaScript
// 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_onEventDeleted(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" * } */
Errors

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

Did this help?