Archives multiple tickets.
function bulkUpdateTickets(
eventId: string,
options: BulkUpdateTicketsOptions,
): Promise<BulkUpdateTicketsResponse>;
Event ID to which the ticket belongs.
Options for updating the tickets.
import { tickets } from "@wix/events";
async function bulkUpdateTickets(eventId, options) {
const response = await tickets.bulkUpdateTickets(eventId, options);
}
This method doesn’t return any custom errors, but may return standard errors. Learn more about standard Wix errors.