Bulk cancels any remaining actions for a trigger and external entities.
function bulkCancelEvent(
triggerKey: string,
externalEntityIds: Array<string>,
): Promise<BulkCancelEventResponse>;
Trigger key whose events you want to cancel.
For example, form_submitted
or invoice_due
.
Repeated list of external_entity_id, representing the related resources' IDs.
import { activations } from "@wix/automations";
async function bulkCancelEvent(triggerKey, externalEntityIds) {
const response = await activations.bulkCancelEvent(
triggerKey,
externalEntityIds,
);
}
This method doesn’t return any custom errors, but may return standard errors. Learn more about standard Wix errors.