bulkDeleteEventsByFilter( )


Permanently deletes multiple events that meet the given criteria.

You can retrieve the deleted events through a GDPR access request.

Authentication

You can only call this method when authenticated as a Wix app or Wix user identity.

Permissions
Manage Events - all permissions
Manage Events
Learn more about app permissions.
Method Declaration
Copy
function bulkDeleteEventsByFilter(
  options: BulkDeleteEventsByFilterOptions,
): Promise<void>;
Method Parameters
optionsBulkDeleteEventsByFilterOptions

Optional fields.

JavaScript
import { wixEventsV2 } from "@wix/events"; async function bulkDeleteEventsByFilter(options) { const response = await wixEventsV2.bulkDeleteEventsByFilter(options); }
Errors

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

Did this help?